import React, { PropsWithChildren } from 'react';
import { LOCALE } from "../types";
export type LeadGenTranslationProps = {
    locale?: LOCALE;
};
export declare const LeadGenTranslationProvider: (props: PropsWithChildren<LeadGenTranslationProps>) => React.JSX.Element;
