import React from 'react'; import { TolgeeFormat } from '@tginternal/editor'; type RenderProps = { content: string; variant: string | undefined; locale: string; exampleValue?: number; }; type Props = { locale: string; value: TolgeeFormat; render: (props: RenderProps) => React.ReactNode; showEmpty?: boolean; activeVariant?: string; variantPaddingTop?: number | string; }; export declare const TranslationPlurals: ({ locale, render, value, showEmpty, activeVariant, variantPaddingTop, }: Props) => import("react/jsx-runtime").JSX.Element; export {};