declare class ChatBot extends HTMLElement {
    private endpoint;
    private headers;
    private chatArray;
    static get observedAttributes(): string[];
    attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
    constructor();
    connectedCallback(): void;
    render(): void;
}
export default ChatBot;
