import * as React from 'react';
import { TvmConnectDialogStore } from '../stores';
import { type PopupType } from '../types';
export declare const TvmConnectDialogStoreContext: React.Context<TvmConnectDialogStore | null>;
export declare function useTvmConnectDialog(): TvmConnectDialogStore;
interface TvmConnectDialogStoreProviderProps {
    agreementsNote?: React.ReactNode | false;
    className?: string;
    popupType?: PopupType;
    qrEnabled?: boolean;
    recentMetaStorageKey?: string;
}
export declare function TvmConnectDialogStoreProvider({ agreementsNote, children, className, popupType, qrEnabled, recentMetaStorageKey, }: React.PropsWithChildren<TvmConnectDialogStoreProviderProps>): React.ReactElement;
export {};
