import { FileBox } from 'wechaty-puppet'; import { Readable } from 'stronger-typed-streams'; import { ConversationIdFileBoxPb } from './file-box-pb.type'; interface ConversationIdFileBoxArgs { conversationId: string; fileBox: FileBox; } /** * MessageSendFileStreamRequest to Args */ declare function unpackConversationIdFileBoxArgsFromPb(stream: Readable): Promise; /** * Args to MessageSendFileStreamRequest */ declare function packConversationIdFileBoxToPb(PbConstructor: { new (): T; }): (conversationId: string, fileBox: FileBox) => Promise>; export { unpackConversationIdFileBoxArgsFromPb, packConversationIdFileBoxToPb, }; //# sourceMappingURL=conversation-id-file-box.d.ts.map