export interface ICompanyContact {
    title: string;
    value: string | number | boolean | Date | null | undefined;
    updatedAt?: Date;
}
