/** * Generates a single file cleanup command with two phases: * 1. Soft-delete expired temp records (keeps physical files) * 2. Force-delete soft-deleted records past grace period + remove physical files * * Only generated when fileConfig.tempFlow is enabled. */ import { SchemaReader } from './schema-reader.js'; import type { GeneratedFile, PhpConfig } from './types.js'; /** Generate the cleanup command (only when tempFlow is enabled). */ export declare function generateFileCleanup(reader: SchemaReader, config: PhpConfig): GeneratedFile[];