export declare function slugify(string: string, options?: SlugifyOptions): string; export declare function extendCharMap(customMap: CharMap): void; // thanks to https://github.com/simov/slugify for much of this code export declare interface SlugifyOptions { replacement?: string remove?: RegExp lower?: boolean strict?: boolean locale?: string trim?: boolean } declare type CharMap = Record; declare type LocaleMap = Record;