import * as React from 'react';
import { type PopupType } from '../types';
export interface TvmConnectDialogProps {
    agreementsNote?: React.ReactNode | false;
    className?: string;
    isActive?: boolean;
    popupType?: PopupType;
    onClose?: VoidFunction;
}
export declare const TvmConnectDialog: React.FunctionComponent<TvmConnectDialogProps>;
