export declare class CompanyDTO {
    [key: string]: any;
    id: string;
    name: string;
    planId: string;
    planType: string;
    subscriptionId: string;
    userBillableCount: number;
    userCount: number;
    userLimit: number;
    trialEndDate: Date | null;
    status: 'future' | 'in_trial' | 'active' | 'non_renewing' | 'paused' | 'cancelled';
    cardStatus: 'no_card' | 'valid' | 'expiring' | 'expired';
}
