import { Options } from './filenamify.js';
export { Options } from './filenamify.js';

/**
Convert the filename in a path a valid filename and return the augmented path.

@example
```
import {filenamifyPath} from 'filenamify';

filenamifyPath('foo:bar');
//=> 'foo!bar'
```
*/
declare function filenamifyPath(path: string, options?: Options): string;

export { filenamifyPath as default };
