import { IMentions } from "../matrix";
export interface EncryptionKeyEntry {
    index: number;
    key: string;
}
export interface EncryptionKeysEventContent {
    keys: EncryptionKeyEntry[];
    device_id: string;
    call_id: string;
}
export type CallNotifyType = "ring" | "notify";
export interface ICallNotifyContent {
    "application": string;
    "m.mentions": IMentions;
    "notify_type": CallNotifyType;
    "call_id": string;
}
//# sourceMappingURL=types.d.ts.map