import type { HTMLAttributes, ReactNode } from 'react'; export interface UnknownContentProps extends HTMLAttributes { /** Строка с html-версткой. */ markup?: string; /** Содержимое. */ children?: ReactNode; }