import { flags } from '@oclif/command';
import { IConfig } from '@oclif/config';
import BaseCommand from '../utils';
import { OutputFlags } from '@oclif/parser';
export default class InitCommand extends BaseCommand {
    static flags: {
        network: flags.IOptionFlag<string | undefined>;
        offerId: flags.IOptionFlag<any>;
        keyType: flags.IOptionFlag<string>;
        keySize: import("@oclif/parser/lib/flags").IOptionFlag<number>;
        'override-db': import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        db: flags.IOptionFlag<string | undefined>;
        config: flags.IOptionFlag<string | undefined>;
        log: flags.IOptionFlag<string>;
        skipPrompt: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        'log-filter': flags.IOptionFlag<string | undefined>;
        'log-path': flags.IOptionFlag<string | undefined>;
    };
    static description: string;
    static examples: string[];
    constructor(argv: string[], config: IConfig);
    protected baseConfig(flags: OutputFlags<typeof InitCommand.flags>): void;
    run(): Promise<void>;
}
