import { BaseEntity } from "../../common/entities/base.entity";
import { Company } from "./company.entity";
export declare class CompanyProfile extends BaseEntity {
    id: number;
    company_id: number;
    first_name: string;
    last_name: string;
    email: string;
    phone_number: string;
    country_code: number;
    currency: string;
    website: string;
    hr_email: string;
    footer: string;
    logo: string;
    company: Company;
    setLogoUrl(): Promise<void>;
}
