/** * Converts a string to a URL-safe slug. * * Expects: any string input. * Returns: lowercase string with non-alphanumeric characters replaced by hyphens, * with leading/trailing hyphens removed. */ export declare function stringSlugify(value: string): string; //# sourceMappingURL=stringSlugify.d.ts.map