interface PruneFsProps {
    mountPath: string;
    currentBuildId: string;
}
/**
 * Given `mountPath` and `currentBuildId`, delete all directories at `mountPath`
 * that are not named `currentBuildId`
 */
export declare function pruneFs(props: PruneFsProps): void;
export {};
