export declare function getDirectoryStructure(root: string): Promise<{
    files: Array<string>;
    directories: Array<string>;
}>;
