import { SerializedFile } from './types'; /** * Deserializes a list of serialized files into the target directory. * * This method uses `resolveSafeChildPath` to make sure that files are * not written outside of the target directory. * * @public */ export declare function deserializeDirectoryContents(targetPath: string, files: SerializedFile[]): Promise;