import * as React from "react"; import type { Props as PropsOrbit } from "@kiwicom/orbit-components/lib/Text"; declare type Props = Omit & { t: string; defaultMessage?: string; values?: Record; tags?: Record React.ReactNode>; transform?: (value: string) => string; }; declare const TextNode: ({ t, defaultMessage, values, tags, transform, ...orbit }: Props) => JSX.Element; export default TextNode;