interface BiDiEvent<TParams> {
    method: string;
    params: TParams;
}
interface NativeVideoChunkAddedParams {
    uuid: string;
    payload: string;
}
export interface NativeVideoChunkAddedEvent extends BiDiEvent<NativeVideoChunkAddedParams> {
}
export {};
//# sourceMappingURL=types.d.ts.map