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