#!/usr/bin/env node
import { CreateLoggerOptions } from './logger';
export interface GlobalOptions extends CreateLoggerOptions {
    readonly help: boolean;
    readonly config: string;
}
export interface MainOptions {
    readonly version: boolean;
}
