import React from "react";
declare const Trans: ({ i18nKey, children, ...props }: {
[key: string]: React.ReactNode | ((el: React.ReactNode) => React.ReactNode);
i18nKey: string;
}) => React.FunctionComponentElement<{
children?: React.ReactNode;
}>;
export default Trans;