import * as yup from 'yup'; import { Connection } from '../../../network'; type PeerMessage = { brokeringPeerDisplayName?: string; direction: 'send' | 'receive'; message: { payload: string; type: string; }; timestamp: number; type: Connection['type']; }; export type GetPeerMessagesRequest = { identity: string; stream?: boolean; }; export type GetPeerMessagesResponse = { messages: PeerMessage[]; }; export declare const GetPeerMessagesRequestSchema: yup.ObjectSchema; export declare const GetPeerMessagesResponseSchema: yup.ObjectSchema; export {}; //# sourceMappingURL=getPeerMessages.d.ts.map