#!/usr/bin/env node
import * as yargs from 'yargs';

declare const tools: yargs.Argv<{}>;
declare const _default: {
    [x: string]: unknown;
    _: (string | number)[];
    $0: string;
} | Promise<{
    [x: string]: unknown;
    _: (string | number)[];
    $0: string;
}>;

export { _default as default, tools };
