import { ThemeType } from '../styles';
import { VoxketClient } from '../core/client';
import { DisplayType } from './widget';
interface ChatViewProps {
    client: VoxketClient;
    theme?: ThemeType;
    onBack?: () => void;
    disabled?: boolean;
    displayType?: DisplayType;
    onEndChat?: () => void;
}
export declare function ChatView({ client, theme, onBack, disabled, displayType, onEndChat, }: ChatViewProps): import("react/jsx-runtime").JSX.Element;
export {};
