import { CommandModule, Options } from 'yargs'; export type IArguments = { dir: string; type: string; }; export declare const command: CommandModule<{ [key: string]: Options; }, IArguments>;