import { OutputFile } from '../template/index.js';
export type OutputFileTransform<T> = (file: OutputFile) => AsyncGenerator<T | OutputFile>;
export declare function noopTransform(file: OutputFile): AsyncGenerator<OutputFile, void, unknown>;
