import { DataObject } from '@twurple/common';
import { type HelixUser } from '@twurple/api';
import { type EventSubChannelSharedChatSessionParticipantData } from './EventSubChannelSharedChatSessionParticipant.external';
/**
 * Represents a broadcaster participating in a shared chat session.
 */
export declare class EventSubChannelSharedChatSessionParticipant extends DataObject<EventSubChannelSharedChatSessionParticipantData> {
    /**
     * The ID of the participant broadcaster.
     */
    get broadcasterId(): string;
    /**
     * The name of the participant broadcaster.
     */
    get broadcasterName(): string;
    /**
     * The display name of the participant broadcaster.
     */
    get broadcasterDisplayName(): string;
    /**
     * Gets information about the participant broadcaster.
     */
    getBroadcaster(): Promise<HelixUser>;
}
//# sourceMappingURL=EventSubChannelSharedChatSessionParticipant.d.ts.map