declare const autoCatch: (impl: any, options?: Record) => Promise; declare const eleInRegExp: (el: HTMLElement, exceptions: Exceptions) => boolean; declare interface Exceptions { id?: RegExp; className?: RegExp; tagName?: RegExp; } declare const getComputedStyle_2: (el: HTMLElement, SIZING_STYLE: string[]) => { sizingStyle?: undefined; paddingSize?: undefined; borderSize?: undefined; boxSizing?: undefined; } | { sizingStyle: string; paddingSize: number; borderSize: number; boxSizing: string; }; export declare const IS_SERVER: boolean; declare const toOptions: (args: any[], orders: Array, original?: T) => T; declare namespace Utils { export { autoCatch, eleInRegExp, toOptions, getComputedStyle_2 as getComputedStyle } } export { Utils } export { }