import { Ref } from 'vue'; import { AnyFunction } from './types'; export declare type PartialCSSStyleDeclaration = Partial>; export declare const clearTimer: (timer: Ref) => void; export declare const isValidWidthUnit: (val: string) => boolean; export declare const generateId: () => number; export declare const isBool: (val: unknown) => boolean; export declare const isNumber: (val: unknown) => boolean; export declare const isHTMLElement: (val: unknown) => boolean; export declare const coerceTruthyValueToArray: (arr: any) => any[]; export declare const escapeRegexpString: (value?: string) => string; export declare const entries: (obj: Indexable) => [string, T][]; export declare const rafThrottle: >(fn: T) => AnyFunction; export declare const autoprefixer: (style: PartialCSSStyleDeclaration) => PartialCSSStyleDeclaration; export declare function toObject(arr: Array): Record; export declare const getValueByPath: (obj: any, paths?: string) => unknown;