import { ObservableRecord } from '../../observable/observableRecord';
export interface DmStreamModel {
    streamId: string;
    firstPartyId?: string;
    secondPartyId?: string;
    lastEventCreatedAtEpochMs: bigint;
}
export declare class DmStreamsView extends ObservableRecord<string, DmStreamModel> {
    constructor();
    setParticipants(streamId: string, firstPartyId: string, secondPartyId: string): void;
    setLastEventCreatedAtEpochMs(streamId: string, lastEventCreatedAtEpochMs: bigint): void;
}
//# sourceMappingURL=dmStreams.d.ts.map