import * as React from 'react';
import { type PopupType } from '../types';
export interface SharedParamsContextConsumer {
    agreementsNote?: React.ReactNode | false;
    popupType?: PopupType;
    qrEnabled?: boolean;
    recentMetaStorageKey?: string;
}
export declare const SharedParamsContext: React.Context<SharedParamsContextConsumer>;
export declare function useSharedParams(): SharedParamsContextConsumer;
