import { ICompanyContact } from '../interfaces';
export declare class CompanyContactEntity implements ICompanyContact {
    title: string;
    updatedAt?: Date | undefined;
    value: string | number | boolean | Date | null | undefined;
    constructor(data?: Partial<CompanyContactEntity>);
}
