/** * @param {Context} context * @param {Element|Root} node */ export function childrenToReact( context: Context, node: Element | Root ): React.ReactNode[] /** * */ export type ComponentType = import('react').ComponentType /** * */ export type ComponentPropsWithoutRef> = import('react').ComponentPropsWithoutRef export type ReactNode = import('react').ReactNode export type Position = import('unist').Position export type Element = import('hast').Element export type ElementContent = import('hast').ElementContent export type Root = import('hast').Root export type Text = import('hast').Text export type Comment = import('hast').Comment export type Doctype = import('hast').DocType export type Info = import('property-information').Info export type Schema = import('property-information').Schema export type ReactMarkdownProps = import('./complex-types.js').ReactMarkdownProps export type Raw = { type: 'raw' value: string } export type Context = { options: Options schema: Schema listDepth: number } export type TransformLink = ( href: string, children: Array, title: string | null ) => string export type TransformImage = ( src: string, alt: string, title: string | null ) => string export type TransformLinkTargetType = import('react').HTMLAttributeAnchorTarget export type TransformLinkTarget = ( href: string, children: Array, title: string | null ) => TransformLinkTargetType | undefined /** * To do: is `data-sourcepos` typeable? */ export type ReactMarkdownNames = keyof JSX.IntrinsicElements export type CodeProps = ComponentPropsWithoutRef<'code'> & ReactMarkdownProps & { inline?: boolean } export type HeadingProps = ComponentPropsWithoutRef<'h1'> & ReactMarkdownProps & { level: number } export type LiProps = ComponentPropsWithoutRef<'li'> & ReactMarkdownProps & { checked: boolean | null index: number ordered: boolean } export type OrderedListProps = ComponentPropsWithoutRef<'ol'> & ReactMarkdownProps & { depth: number ordered: true } export type TableDataCellProps = ComponentPropsWithoutRef<'td'> & ReactMarkdownProps & { style?: Record isHeader: false } export type TableHeaderCellProps = ComponentPropsWithoutRef<'th'> & ReactMarkdownProps & { style?: Record isHeader: true } export type TableRowProps = ComponentPropsWithoutRef<'tr'> & ReactMarkdownProps & { isHeader: boolean } export type UnorderedListProps = ComponentPropsWithoutRef<'ul'> & ReactMarkdownProps & { depth: number ordered: false } export type CodeComponent = ComponentType export type HeadingComponent = ComponentType export type LiComponent = ComponentType export type OrderedListComponent = ComponentType export type TableDataCellComponent = ComponentType export type TableHeaderCellComponent = ComponentType export type TableRowComponent = ComponentType export type UnorderedListComponent = ComponentType export type SpecialComponents = { code: CodeComponent | ReactMarkdownNames h1: HeadingComponent | ReactMarkdownNames h2: HeadingComponent | ReactMarkdownNames h3: HeadingComponent | ReactMarkdownNames h4: HeadingComponent | ReactMarkdownNames h5: HeadingComponent | ReactMarkdownNames h6: HeadingComponent | ReactMarkdownNames li: LiComponent | ReactMarkdownNames ol: OrderedListComponent | ReactMarkdownNames td: TableDataCellComponent | ReactMarkdownNames th: TableHeaderCellComponent | ReactMarkdownNames tr: TableRowComponent | ReactMarkdownNames ul: UnorderedListComponent | ReactMarkdownNames } export type Components = Partial< Omit & SpecialComponents > export type Options = { sourcePos?: boolean rawSourcePos?: boolean skipHtml?: boolean includeElementIndex?: boolean transformLinkUri?: null | false | TransformLink transformImageUri?: TransformImage linkTarget?: TransformLinkTargetType | TransformLinkTarget components?: Components } import React from 'react' import style from 'style-to-object'