interface Options {
    command: string;
    args: (inputPath: any) => string[];
    input: string;
    timeout_s?: number;
}
export default function genericFormat({ command, args, input, timeout_s, }: Options): Promise<string>;
export {};
