/** * This class is based on a github-slugger but does not replace the '/' character * https://github.com/Flet/github-slugger */ export declare class GithubSlugger { private occurrences; slug(value: string, maintainCase?: boolean): string; /** * Reset - Forget all previous slugs * * @return void */ reset(): void; } export declare const slugger: GithubSlugger; export declare function slug(value: string, maintainCase?: boolean): string; //# sourceMappingURL=slugger.d.ts.map