import { createFeishuMessageClient as createDefaultFeishuMessageClient } from '../feishu/client.js'; interface MessageGlobalInput { agent?: string; item?: string; } export interface MessageReadInput extends MessageGlobalInput { after?: string; around?: string; before?: string; channel?: string; cursor?: string; inclusive?: boolean; latest?: string; limit?: number; oldest?: string; threadTs?: string; } interface MessageReadDeps { createFeishuMessageClient?: typeof createDefaultFeishuMessageClient; } export declare function runMessageRead(opts: MessageReadInput, deps?: MessageReadDeps): Promise; export {}; //# sourceMappingURL=message-read.d.ts.map