import { PropsWithChildren } from 'react'; import type { BaseProps } from '../../component-helpers'; export type UnorderedListProps = PropsWithChildren> & { /** * The semantic structure of list that is presented visually setting 'ol' vs 'ul' based on the style the style of the list. */ variant?: 'default' | 'checked' | 'x'; }; declare function Root({ variant, children, ...props }: UnorderedListProps): import("react/jsx-runtime").JSX.Element; export declare const UnorderedList: typeof Root & { Item: any; }; export {};