import { AnchorHTMLAttributes, InputHTMLAttributes, PropsWithChildren } from 'react'; import { LiProps, SpecialComponents } from 'react-markdown/lib/ast-to-react'; import { NormalComponents } from 'react-markdown/lib/complex-types'; export type MarkdownLinkProps = PropsWithChildren>; export type MarkdownInputProps = PropsWithChildren>; export type MarkdownLiProps = PropsWithChildren; export type CustomComponentsProps = Partial & SpecialComponents> | undefined;