import * as React from 'react';
import './index.css';
export interface TvmConnectDialogProps {
    className?: string;
    open?: boolean;
    type?: 'drawer';
    onClose?: VoidFunction;
}
export declare const TvmConnectDialog: (({ className, open, type, onClose }: TvmConnectDialogProps) => React.JSX.Element) & {
    displayName: string;
};
