declare namespace slugify { interface Options { /** @default '-' @example ``` import slugify = require('@sindresorhus/slugify'); slugify('BAR and baz'); //=> 'bar-and-baz' slugify('BAR and baz', {separator: '_'}); //=> 'bar_and_baz' ``` */ readonly separator?: string; /** Make the slug lowercase. @default true @example ``` import slugify = require('@sindresorhus/slugify'); slugify('Déjà Vu!'); //=> 'deja-vu' slugify('Déjà Vu!', {lowercase: false}); //=> 'Deja-Vu' ``` */ readonly lowercase?: boolean; /** Convert camelcase to separate words. Internally it does `fooBar` → `foo bar`. @default true @example ``` import slugify = require('@sindresorhus/slugify'); slugify('fooBar'); //=> 'foo-bar' slugify('fooBar', {decamelize: false}); //=> 'foobar' ``` */ readonly decamelize?: boolean; /** Specifying this only replaces the default if you set an item with the same key, like `&`. The replacements are run on the original string before any other transformations. Add a leading and trailing space to the replacement to have it separated by dashes. @default [ ['&', ' and '], ['🦄', ' unicorn '], ['♥', ' love '] ] @example ``` import slugify = require('@sindresorhus/slugify'); slugify('Foo@unicorn', { customReplacements: [ ['@', 'at'] ] }); //=> 'fooatunicorn' slugify('foo@unicorn', { customReplacements: [ ['@', ' at '] ] }); //=> 'foo-at-unicorn' ``` */ readonly customReplacements?: ReadonlyArray<[string, string]>; /** If your string starts with an underscore, it will be preserved in the slugified string. Sometimes leading underscores are intentional, for example, filenames representing hidden paths on a website. @default false @example ``` import slugify = require('@sindresorhus/slugify'); slugify('_foo_bar'); //=> 'foo-bar' slugify('_foo_bar', {preserveLeadingUnderscore: true}); //=> '_foo-bar' ``` */ readonly preserveLeadingUnderscore?: boolean; } } /** Slugify a string. @param string - String to slugify. @example ``` import slugify = require('@sindresorhus/slugify'); slugify('I ♥ Dogs'); //=> 'i-love-dogs' slugify(' Déjà Vu! '); //=> 'deja-vu' slugify('fooBar 123 $#%'); //=> 'foo-bar-123' slugify('I ♥ 🦄 & 🐶', { customReplacements: [ ['🐶', 'dog'] ] }); //=> 'i-love-unicorn-and-dog' ``` */ declare function slugify( string: string, options?: slugify.Options ): string; export = slugify;