import { AuthCommand } from '../authCommand'; export default class EnvPull extends AuthCommand { static hidden: boolean; static readOnly: boolean; static idempotent: boolean; static description: string; static flags: { force: import("@oclif/core/interfaces").BooleanFlag; }; static args: { filename: import("@oclif/core/interfaces").Arg>; }; run(): Promise; }