import type { ISession } from '../session/types.js';
export type CleanOptions = {
    docx?: boolean;
    pdf?: boolean;
    tex?: boolean;
    xml?: boolean;
    md?: boolean;
    meca?: boolean;
    site?: boolean;
    html?: boolean;
    temp?: boolean;
    logs?: boolean;
    cache?: boolean;
    exports?: boolean;
    execute?: boolean;
    templates?: boolean;
    all?: boolean;
    yes?: boolean;
};
export declare function clean(session: ISession, files: string[], opts: CleanOptions): Promise<void>;
//# sourceMappingURL=clean.d.ts.map