declare const formatMoney: (amount: any, decimalCount?: number, decimal?: string, thousands?: string) => string; declare const initInputDataForEmit: (input: any) => { value: any; type: any; name: any; disabled: any; readOnly: any; placeholder: any; required: any; maxLength: any; minLength: any; size: any; min: any; max: any; step: any; checked: any; defaultChecked: any; indeterminate: any; accept: any; files: any; multiple: any; autofocus: any; pattern: any; autocomplete: any; list: any; src: any; }; declare const wait: (duration: number) => Promise; declare const generateId: (prefix: string) => string; declare const parsePropData: (data: any) => any; declare const getPosition: (el: any) => { x: any; y: any; }; declare const throttle: (callback: any, delay: any) => () => void; declare const createOverlay: (callback: any) => void; declare function randomHexColor(): string; export { formatMoney, initInputDataForEmit, wait, generateId, parsePropData, getPosition, throttle, createOverlay, randomHexColor, };