declare type OptionsType = { length: number; numeric?: boolean; letters?: boolean; special?: boolean; }; export declare const randomString: (_opts: OptionsType) => string; export {};