import type { Command } from 'commander'; import { z } from 'zod'; import { type OrientationDeps } from './orientation.js'; declare const PlacesSchema: z.ZodObject<{ agent: z.ZodOptional; all: z.ZodDefault; }, z.core.$strip>; declare const WhoisSchema: z.ZodObject<{ agent: z.ZodOptional; target: z.ZodString; }, z.core.$strip>; export type PlacesOptions = z.infer; export type WhoisOptions = z.infer; export declare function registerOrientationCommands(program: Command): void; export declare function runWhois(opts: WhoisOptions, deps?: OrientationDeps): Promise; export declare function runPlaces(opts: PlacesOptions, deps?: OrientationDeps): Promise; export {}; //# sourceMappingURL=orientation-cli.d.ts.map