import { Command } from 'commander'; type Zones_opts = { output?: string; json?: boolean; pretty?: boolean; timing?: boolean; apiKey?: string; }; declare const handle_list_zones: (opts: Zones_opts) => Promise; declare const handle_zone_info: (name: string, opts: Zones_opts) => Promise; declare const zones_command: Command; export { zones_command, handle_list_zones, handle_zone_info }; //# sourceMappingURL=zones.d.ts.map