export interface IOptions {
    lowercase?: boolean;
}
declare const slugify: (value_: string, options_?: IOptions) => any;
export default slugify;
