import type { ListAssets } from '../types/assets';
import type { DeployConfig } from '../types/config';
import type { PreparePruneOptions, PruneFileStorage } from '../types/prune';
export declare const preparePrune: ({ config, listAssets, assertSourceDirExists }: {
    config: DeployConfig;
    listAssets: ListAssets;
} & PreparePruneOptions) => Promise<{
    files: PruneFileStorage[];
}>;
