import { HMSICEServer } from '../../interfaces';
export declare class JoinParameters {
    authToken: string;
    peerId: string;
    peerName: string;
    data: string;
    endpoint: string;
    autoSubscribeVideo: boolean;
    iceServers?: HMSICEServer[] | undefined;
    constructor(authToken: string, peerId: string, peerName?: string, data?: string, endpoint?: string, autoSubscribeVideo?: boolean, iceServers?: HMSICEServer[] | undefined);
}
