export declare const _isNotEmpty: (value: T) => boolean; export declare const _UUID: () => string; export declare const _countWords: (str: string) => number; export declare const _isLeapYear: (year: number) => boolean; export declare const _isWeekend: (date: Date) => boolean; export declare const _removeFalsy: (arr: T[]) => T[]; export declare const _escapeHTML: (str: string) => string; export declare const _handleApi: (apiCall: Promise, onSuccess: (res: T) => void, onError: (err: unknown) => void, onFinally?: () => void) => Promise; export declare const _handleSafe: (action: () => void | Promise, onError?: (error: unknown) => void, onFinally?: () => void) => Promise; export declare function _clearRouteState(path?: string): void;