TransText.d.ts 209 B

123456
  1. import { TransProps } from '.';
  2. declare type ValueTransProps = Pick<TransProps, 'components'> & {
  3. text: string;
  4. };
  5. export default function TransText({ text, components }: ValueTransProps): any;
  6. export {};