interface Output { log?: string | string[]; table?: string; } export declare const output: ({ table, log }: Output) => void; export {};