declare const utils: {
    debounce: (func: () => void, wait?: number) => () => void;
    generateUUID: () => string;
};
export { utils };
