import { Syncable } from "../interface/syncable";
interface Options {
    filter?: (filepath: string) => Syncable<boolean>;
}
export declare function readdeepdir(dir: string, options?: Options): Promise<string[]>;
export {};
