import { PropsWithChildren } from 'react'; import type { BaseProps } from '../../component-helpers'; export type OrderedListProps = PropsWithChildren>; declare function Root({ children, ...props }: OrderedListProps): import("react/jsx-runtime").JSX.Element; export declare const OrderedList: typeof Root & { Item: any; }; export {};