import { Options } from "yargs"; export interface CommonProps { count: number; filename: string; output: string; config: string; zip: boolean; } export declare const common: { config: Options; count: Options; filename: Options; output: Options; zip: Options; };