import { CallEventReport, CallMetaReport, ClientDataChannelReport, ClientExtensionReport, IceCandidatePairReport, InboundAudioTrackReport, InboundVideoTrackReport, OutboundAudioTrackReport, OutboundVideoTrackReport, PeerConnectionTransportReport } from '../protocols/ReportTypes'; export type DatabaseFrameSchema = { CallEventReport: CallEventReport; CallMetaReport: CallMetaReport; ClientDataChannelReport: ClientDataChannelReport; ClientExtensionReport: ClientExtensionReport; IceCandidatePairReport: IceCandidatePairReport; InboundAudioTrackReport: InboundAudioTrackReport; InboundVideoTrackReport: InboundVideoTrackReport; OutboundAudioTrackReport: OutboundAudioTrackReport; OutboundVideoTrackReport: OutboundVideoTrackReport; PeerConnectionTransportReport: PeerConnectionTransportReport; }; export type DatabaseFrameConditions> = Omit<{ [K in keyof T]?: T[K] | T[K][]; }, 'serviceId' | 'timestamp'>; //# sourceMappingURL=DatabaseFrame.d.ts.map