export declare function pathExists(path: string, type?: 'file' | 'directory'): Promise<boolean>;
export declare function readJson<T>(path: string): Promise<T>;
