export interface MergeOptions { /** Directory to create. Default "-merged" beside the first input. */ outDir?: string; /** Allow inputs whose post-processing state differs. */ allowMixedPostFx?: boolean; } export declare function runMerge(dirs: string[], options?: MergeOptions): void;