export declare const secondsToHms: (secs: number) => { h: number; m: number; s: number; }; export declare const toBase64: (file: Blob) => Promise; export declare const blobToURL: (file: Blob) => string; export declare const hideValue: (v: string) => string; export declare const formatAmount: (x: number) => string; export declare const isValidPhone: (n: string) => boolean; export declare const isValidEmail: (v: string) => boolean; export declare const isValidPassword: (v: string) => boolean; export declare const copy: (id: string) => void; export declare function debounce(func: (...args: any) => {}, timeout?: number): (...args: any[]) => void; //# sourceMappingURL=utils.d.ts.map