UNPKG

@hoosei/voxweave-react

Version:

A customizable and interactive voice UI component for React applications

15 lines (14 loc) 335 B
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>;