/** * Converts a string into a URL-friendly "slug" by * lowercasing and replacing whitespace with hyphens. * * Example: * slugify('Hello World Example') // returns 'hello-world-example' */ export declare const slugify: (value: string) => string; //# sourceMappingURL=slugify.d.ts.map