export declare function pascalToDashCase(input: string): string; export declare function randomString(length?: number, prefix?: string): string; /** * Function for creating a debounced function with a * configurable wait time between calls. Useful for limiting * the amount of times a function is called in a short * amount of time. * * @param func - Function to be debounced. * @param wait - Wait time in milliseconds. * @returns debounced function */ export declare const debounce: (func: any, wait: number) => (...args: any[]) => void;