export interface LicenseValidationResponse {
    success: boolean;
    data?: {
        valid: boolean;
        expired?: boolean;
        plan?: string;
        features?: string[];
    };
    error?: {
        message: string;
        code: string;
    };
}
export declare function validateLicenseKey(key: string): Promise<boolean>;
