/** * Converts a string to a URL slug * * @example * slugify("Hello World") // "hello-world" * slugify("CamelCaseString") // "camel-case-string" * slugify("") // "" */ export declare function slugify(text: string): string;