export declare const uid: () => string;
export declare const randomNumber: (min: number, max: number) => number;
export declare const colors: string[];
export declare function debounce<F extends (...args: any[]) => void>(func: F, wait: number): (this: ThisParameterType<F>, ...args: Parameters<F>) => void;
