import { Env, Module } from '../types'; declare type Output = 'silent' | 'inf' | 'err'; declare type Command = (topic: string, /** * can be a string or an array of strings - * use an array if you have to deal with empty spaces - * like in a commit message * */ cmd: (env: Env) => string | string[], stdout: Output, stderr: Output) => Module; export declare const command: Command; export {}; //# sourceMappingURL=command.d.ts.map