/**
 * It returns a string of random characters of a specified length.
 * @param [length=10] - The length of the key you want to generate.
 * @returns A string of random characters.
 */
export declare function uniKey(length?: number): string;
