declare const camelize: (str: string) => string; declare const kebabize: (str: string) => string; declare const removeLastPath: (fpath: string) => string; declare const getFilePaths: (importmetaurl: string) => { __dirname: string; __filename: string; }; export { camelize, kebabize, removeLastPath, getFilePaths };