declare function _string(): string; declare function _string(length: number): string; declare function _string(poolTag: string, length: number): string; declare function _string(min: number, max: number): string; declare function _string(poolTag: string, min: number, max: number): string; export { capitalize } from 'lodash-es'; export declare const upper: (str: string) => string; export declare const lower: (str: string) => string; declare const string: typeof _string; export { string, string as str };