export declare function resolveDebuger(name: any): void; export declare function kebabCase(key: any): any; export declare function isAsyncFunc(func: any): boolean; export declare function closest(that: any, componentName: string): any; export declare function useClosest(componentName: string): import("vue-demi").ComputedRef; export declare function getDirs(): string[]; export declare function getTranspileDependencies(): string[]; export declare const getResolver: () => { type: string; resolve: (name: any) => { from: string; sideEffects: never[]; } | undefined; }; export declare const getJsComponentSampleConfig: (config?: Record) => { exclude: RegExp[]; include: RegExp[]; deep: boolean; transformer: string; resolvers: never[]; }; export declare const getTsComponentSampleConfig: (config?: Record) => { include: RegExp[]; deep: boolean; extensions: string[]; dirs: string[]; resolvers: never[]; }; export declare function generateUUID(): string; export declare const getCharStringLength: (str: any) => number; export declare const deepClone: (source: any) => any; export declare function debounce(func: any, wait: any, immediate: any): (...args: any[]) => any; export declare function createUniqueString(randomLength?: number): string; export declare function getHalfYear(date?: Date): number; export declare function getQuarter(date?: Date): number; export declare function getNextYear(date?: Date): Date; export declare function endOf(now: Date | undefined, unit: any): Date; export declare function startOf(date: any, unit: any): Date; export declare function formatDate(date: any, format: any): any; export declare function HexToRgb(str: string): RegExpMatchArray | null | undefined; export declare function RgbToHex(a: number, b: number, c: number): string | undefined; export declare function getDarkColor(color: string, level: number): string | undefined; export declare function getLightColor(color: string, level: number): string | undefined; export declare const toLine: (value: string) => string; export declare function upperCamelCase(word: string): string; export declare function isAutoFlexBasis(el: HTMLElement): boolean; export declare function _getComputedStyle(el: HTMLElement, k: string): string | undefined; export declare function getFlexDirection(el: HTMLElement): { vertical: boolean; reverse: boolean; }; export declare function getBlobURL(jsCode: any): string; export declare function toBase64(str: any): string; export declare function generateID(): string; export declare const copyFile: (sourcePath: string, targetPath: string) => void; export declare const add: (arg1: number, arg2: number) => number; export declare const sub: (arg1: number, arg2: number) => number; export declare const mul: (arg1: number, arg2: number) => number; export declare const div: (arg1: number, arg2: number) => number; export declare function getLocalTime(i: any): Date; export declare function toPascalCase(str: any): any; export declare class CachedManager { static cachedEntitys: {}; static asyncCachedGet(key: any): Promise; static syncCachedGet(key: any): any; static asyncCachedSet(key: any, value: any): Promise; static syncCachedSet(key: any, value: any): void; } export declare function resolveValue(state: any | Function, ...args: any[]): any;