import type { FormatOptions, LintOptions } from './types'; export declare function runUnified(globs: string[], options: RunOptions): Promise; export type RunOptions = (Partial & Partial) & { mode?: 'auto' | 'lint' | 'format' }