import type { TranslatePropsInternal, WrapperMiddleware } from '@tolgee/core'; type Props = { inputPrefix: string; inputSuffix: string; translate: (params: TranslatePropsInternal) => string; }; export declare function TextWrapper({ inputPrefix, inputSuffix, translate, }: Props): WrapperMiddleware; export {};