export declare const formatSlug: (val: string) => string; /** * Same as formatSlug, except that it does not remove hyphens from the end of the string. Also converts spaces at the end of the string to hyphens. * * This is used to format a slug while typing. */ export declare const liveFormatSlug: (val: string) => string;