import type { ReactElement } from 'react'; import type { UITranslationProps, TranslationSuggest, TranslationEntry } from './UITranslationButton.types.js'; import './UITranslationInput.scss'; export interface UITranslationButtonProps extends UITranslationProps { onUpdateValue?: (value: string) => void; suggestion: TranslationSuggest; /** * Inverted style theme * * @default false */ invertedCalloutTheme?: boolean; } /** * Component to render translation button to provide helper callout with i18n generation option. * * @param props Component properties. * @returns Component to render translation button with callout. */ export declare const UITranslationButton: (props: UITranslationButtonProps) => ReactElement; //# sourceMappingURL=UITranslationButton.d.ts.map