import type { Configs } from '../../@types/list-files.js'; export declare const sanitizePath: (input: string, ensureTarget?: boolean) => string; export declare const isFile: (fullPath: string) => Promise; export declare const escapeRegExp: (string: string) => string; export declare const getAllFiles: (dirPath: string, files?: Set, configs?: Configs) => Promise>; export declare const listFiles: (targetDir: string, configs?: Configs) => Promise;