export declare class Company {
    id: number;
    name: string;
    code: string;
    logoUrl: string | null;
    periodCycleStartDay: number;
    currency: string;
    isActive: boolean;
    createdBy: number | null;
    createdAt: Date;
    updatedAt: Date;
}
