import Message from './Message';
export default class Call extends Message {
    uniqueId: string;
    payload?: {
        [key: string]: any;
    } | undefined;
    constructor(uniqueId?: string, payload?: {
        [key: string]: any;
    } | undefined);
}
