import React from 'react';
import { Connection } from '../types/Connection';
import { ConnectionViewType } from '../types/ConnectionViewType';
import { SessionSettings } from '../types/Session';
interface Props {
    connection: Connection;
    onConnectionChange?: (connection: Connection) => any;
    setCurrentView: (view: ConnectionViewType | null | undefined) => void;
    settings: SessionSettings;
    shouldShowAuthorizeButton: boolean;
    isUpdating: boolean;
    showButtonLayout?: boolean;
}
declare const ButtonLayoutMenu: React.FC<Props>;
export default ButtonLayoutMenu;
