interface Input { length: number; charactorSet: string; } export declare function randomString({ length, charactorSet }: Input): string; export {};