import { EnvCommand } from '../base/env-command'; export declare const LOAD_PROJECT_BUNDLE_QUERY = "\nquery GetProjectBundle($id: ID!) {\n registryUrl\n project: getProjectById(id: $id) {\n version {\n id\n bundle\n }\n }\n}\n"; export default class PullCommand extends EnvCommand { static description: string; static flags: { env: import("@oclif/command/lib/flags").IOptionFlag; dir: import("@oclif/command/lib/flags").IOptionFlag; }; run(): Promise; }