/** Strict parser for the script-facing `botmux grant chat` command. */ export type ExactChatGrantCliOperation = 'grant' | 'revoke' | 'readback'; export interface ExactChatGrantCliArgs { operation: ExactChatGrantCliOperation; receiverRef: string; chatId: string; subjectOpenIds: string[]; subjectLarkAppIds: string[]; } export type ExactChatGrantCliParseResult = { ok: true; value: ExactChatGrantCliArgs; } | { ok: false; error: string; }; export declare function parseExactChatGrantCliArgs(args: string[]): ExactChatGrantCliParseResult; //# sourceMappingURL=exact-chat-grant.d.ts.map