declare const cparagraph: (min?: number, max?: number) => string; declare const csentence: (min?: number, max?: number) => string; declare const ctitle: (min?: number, max?: number) => string; declare function _cword(): string; declare function _cword(pool: string): string; declare function _cword(length: number): string; declare function _cword(pool: string, length: number): string; declare function _cword(min: number, max: number): string; declare function _cword(pool: string, min: number, max: number): string; declare const cword: typeof _cword; export { ctitle, csentence, cparagraph, cword };