import React from 'react'; export interface ResultProps { [key: string]: React.ReactNode; } interface TransProps { id: string; fallbackId?: string; props?: ResultProps; render?: ({ message, }: { message: string; }) => React.ReactElement | null; } export declare const Trans: React.FC; export {};