interface IModuleGet { capitalized: (text: string) => string; checksum: (data: any, algorithm?: string) => string; filename: (text: string) => string; reversed: (text: string) => string; } interface IModuleIs { hexCode: (txt: string) => boolean; } interface IModuleStrip { bom: (text: string) => string; emoji: (text: string) => string; extraSpace: (text: string) => string; gutenberg: (text: string) => string; newlines: (text: string) => string; nonASCII: (text: string) => string; punctuation: (text: string) => string; whitespace: (text: string) => string; } interface IModuleReplace { exoticChars: (text: string) => string; smartChars: (text: string) => string; diacritics: (text: string) => string; } interface IModule { get: IModuleGet; is: IModuleIs; strip: IModuleStrip; replace: IModuleReplace; } declare const Module: IModule; declare const get: IModuleGet; declare const is: IModuleIs; declare const strip: IModuleStrip; declare const replace: IModuleReplace; export { Module as default, get, is, replace, strip };