import React from 'react'; export interface Config { linkComponent: React.ElementType; locale?: string; v3Button?: boolean; } export declare const defaultConfig: { linkComponent: "a"; }; export declare const ConfigContext: React.Context>;