import { Connection } from '../types/Connection';
import { ConnectionViewType } from '../types/ConnectionViewType';
export declare const ModalContent: ({ onClose, onConnectionChange, consumer, initialView, showLanguageSwitch, }: {
    consumer?: {
        image?: string | undefined;
        user_name?: string | undefined;
        account_name?: string | undefined;
    } | undefined;
    onClose: () => any;
    onConnectionChange?: ((connection: Connection) => any) | undefined;
    initialView?: ConnectionViewType | undefined;
    showLanguageSwitch?: boolean | undefined;
}) => JSX.Element;
