import { Ref, ReactNode, RefAttributes } from "react"; import { DOMProps } from "@react-types/shared"; import { ForwardedRefComponent } from "../../types/components"; export declare type ListElementType = HTMLOListElement | HTMLUListElement; export declare type ListStyleType = "disc" | "circle" | "square" | "decimal" | "georgian" | "trad-chinese-informal" | "kannada"; export interface ListProps extends DOMProps, RefAttributes { children?: ReactNode; ordered?: boolean; reversed?: boolean; start?: number; liststyletype?: ListStyleType; className?: string; } export declare type ListRef = Ref; declare const List: ForwardedRefComponent; export { List };