import { Company } from './company.entity';
import { AuditRequest } from '../../audit-requests/entities/audit-request.entity';
export declare class CompanyBranch {
    id: number;
    companyId: number;
    branchName: string;
    normalizedBranchName: string;
    tradeLicenseNo: string | null;
    address: string | null;
    city: string | null;
    countryId: number | null;
    contactPerson: string | null;
    designation: string | null;
    email: string | null;
    mobile: string | null;
    telephone: string | null;
    scopeOfWork: string | null;
    certificationBody: string | null;
    accreditation: string | null;
    isHeadOffice: number;
    status: string;
    createdAt: Date;
    updatedAt: Date;
    company: Company;
    auditRequests: AuditRequest[];
}
