import { AsElementProps, ElementProps, HeadingLevel } from "../../../types/shared.mjs"; import { Component } from "../../../internal/factory/factory.mjs"; import { PolymorphicComponentProps } from "../../../internal/factory/create-polymorphic-factory.mjs"; import { BaseProps } from "../../core/base/Base.mjs"; import React from "react"; //#region src/components/content-presentation/do-dont-list/DoDontList.d.ts type DoDontListProps = ElementProps<'div'>; declare const DoDontList: Component<{ props: DoDontListProps; ref: HTMLDivElement; staticComponents: { Title: typeof DoDontListTitle; List: typeof DoDontListList; Item: typeof DoDontListItem; }; }>; type DoDontListTitleProps = BaseProps & AsElementProps; declare const DoDontListTitle: ((props: PolymorphicComponentProps) => React.ReactElement) & Omit & AsElementProps & Omit, "className" | "children" | "as"> & { ref?: any; renderRoot?: (props: any) => any; }) | ({ className?: string; } & { children?: React.ReactNode | undefined; } & AsElementProps<"h1" | "h2" | "h3" | "h4" | "h5" | "h6"> & { as: keyof React.JSX.IntrinsicElements | React.JSXElementConstructor; renderRoot?: (props: Record) => any; })>, never> & Record; type DoDontListListProps = { variant: 'do' | 'dont'; } & ElementProps<'ul'>; declare const DoDontListList: { ({ variant, className, role, ...props }: DoDontListListProps): React.JSX.Element; displayName: string; }; type DoDontListItemProps = { variant: 'do' | 'dont'; } & ElementProps<'li'>; declare const DoDontListItem: { ({ variant, className, children, ...props }: DoDontListItemProps): React.JSX.Element; displayName: string; }; //#endregion export { DoDontList, DoDontListItem, DoDontListItemProps, DoDontListList, DoDontListListProps, DoDontListProps, DoDontListTitle, DoDontListTitleProps };