import { ReactNode } from 'react'; declare function Info({ children }: { children: ReactNode; }): ReactNode; interface ObjectType { /** * Additional description of the field */ description?: ReactNode; type: string; typeDescription?: ReactNode; /** * Optional link to the type */ typeDescriptionLink?: string; default?: string; } declare function TypeTable({ type, }: { type: Record; }): React.ReactElement; export { Info, TypeTable };