export interface CleanOptions { readonly cliName?: string; readonly quiet?: boolean; readonly snapshots?: boolean; } export type CleanCallback = (status: number) => void; export declare const clean: (cmd: CleanOptions, callback?: CleanCallback) => Promise;