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