import * as React from 'react'; import { Interpolation } from '@cloudflare/intl-core'; interface CommonTransProps { applyMarkdown?: boolean; smartCount?: number | string; _?: string; values?: { [interpolationKey: string]: any; }; Components?: Array>; componentProps?: Array<{ [key: string]: any; }>; } interface TransPropsIdString extends CommonTransProps { id: string; } interface TransPropsIdInterpolation extends CommonTransProps { id: Interpolation; values: { [K in Param]: string; }; } export declare function Trans({ id, smartCount, _, values, applyMarkdown, Components, componentProps, testId }: (TransPropsIdString | TransPropsIdInterpolation) & { testId?: string; }): JSX.Element; export default Trans;