import { ManagedFileMetadata } from '../types'; export type ListOptions = { cwd: string; outputDir: string; verbose?: boolean; /** Absolute path to the lock file. */ lockfilePath: string; }; /** * List all managed files for an output directory from the central lock file. * Note: list always ignores --presets; reports all managed files. */ export declare function actionList(options: ListOptions): ManagedFileMetadata[]; //# sourceMappingURL=action-list.d.ts.map