import { FileNode } from '../typings';
interface getNodeTreeProps {
    rootPath: string;
    slugMap?: Map<string, boolean>;
}
export declare function getNodeTree({ rootPath, slugMap, }: getNodeTreeProps): Promise<FileNode>;
export {};
