import React from 'react'; import type { ReactNode } from 'react'; interface Props { className?: string; children?: ReactNode; } export declare function InfoText({ className, children }: Props): React.JSX.Element; export declare namespace InfoText { type Text = string; type Link = { text: Text; href: string; }; type Button = { text: Text; onClick: () => void; }; type StructuredContent = Array; function Structured(props: Omit & { children: StructuredContent; }): React.JSX.Element; } export {};