import type { JSX, ReactNode } from 'react';
export type BrowserTranslateProps = {
    /**
     * Set to `true` to disable browser translation (e.g. Google Translate)
     * on all form components and their portal content within this scope.
     */
    off?: boolean;
    children: ReactNode;
};
export default function BrowserTranslate({ off, children, }: BrowserTranslateProps): JSX.Element;
