import { InjectionToken } from '@angular/core'; export type RewriteFn = (slug: string) => string; export interface SlugRewrite { toStory: RewriteFn; toUrl: RewriteFn; toRichtextUrl: RewriteFn; } export declare const NG_STORYBLOK_SLUG_REWRITE: InjectionToken;