export interface FormatArgs {
    tags?: Record<string, string>;
    source?: string;
    command: string;
    params: string[];
}
export declare function format({ tags, source, command, params }: FormatArgs): string;
