export default ConnectivityDeck;
declare class ConnectivityDeck extends React.Component<any, any, any> {
    constructor(props: any);
    state: {
        open: boolean;
    };
    deck: {
        title: string;
        subtitle: string;
        handler: any;
        disabled: boolean;
        img: any;
    }[];
    render(): import("react/jsx-runtime").JSX.Element;
}
import React from "react";
