import Command, { flags } from '@oclif/command'; export default class QuerySnapshot extends Command { static description: string; static examples: string[]; static flags: { width: import("@oclif/parser/lib/flags").IOptionFlag; height: import("@oclif/parser/lib/flags").IOptionFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; token: flags.IOptionFlag; hostname: flags.IOptionFlag; json: import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: { name: string; required: boolean; description: string; }[]; run(): Promise; }