export interface LicenseValidationResult { status: 'VALID' | 'EXPIRING' | 'EXPIRED'; daysUntilExpiry: number | null; requiresApproval: boolean; message: string; } export declare function validateLicense(licenseExpiry: Date | null): LicenseValidationResult; export declare function validateAndFlagLicense(customerId: string, companyId?: string): Promise; //# sourceMappingURL=licenseValidationService.d.ts.map