import type { Command } from 'commander'; import { z } from 'zod'; declare const AskCommandSchema: z.ZodObject<{ channel: z.ZodOptional; option: z.ZodDefault>; question: z.ZodString; replyHint: z.ZodDefault; threadTs: z.ZodOptional; to: z.ZodOptional; }, z.core.$strict>; export declare function registerAskCommands(program: Command): void; export declare function runAsk(opts: z.infer): Promise; export {}; //# sourceMappingURL=ask.d.ts.map