/** * Serializes provided path into tar archive * * @alpha */ export declare const serializeWorkspace: (opts: { path: string; }) => Promise<{ contents: Buffer; }>; /** * Rehydrates the provided buffer of tar archive into the provide destination path * * @alpha */ export declare const restoreWorkspace: (opts: { path: string; buffer?: Buffer; }) => Promise;