export interface AthenaChatProps { className?: string; /** Content shown when the open room has no messages. */ emptyState?: React.ReactNode; /** Hides the room title bar. */ hideHeader?: boolean; /** Hides the room sidebar for single-room embeds. */ hideRoomList?: boolean; placeholder?: string; } /** * Complete chat experience: rooms, transcript and composer. * * Compose {@link AthenaChatRoomList}, {@link AthenaChatMessageList} and * {@link AthenaChatComposer} directly when a different layout is needed. */ export declare function AthenaChat({ className, emptyState, hideHeader, hideRoomList, placeholder }: AthenaChatProps): import("react").JSX.Element;