export declare const dir: {
    getChildFileCodePaths: ({ dirPath }: {
        dirPath: any;
    }) => Promise<string[]>;
    getChildFilePaths: ({ dirPath }: {
        dirPath: any;
    }) => Promise<string[]>;
    getChildNames: ({ dirPath }: {
        dirPath: any;
    }) => Promise<string[]>;
    getChildPaths: ({ dirPath }: {
        dirPath: any;
    }) => Promise<string[]>;
};
