import { AsElementProps, ElementProps } from "../../../../types/shared.mjs"; import { PolymorphicComponentProps } from "../../../../internal/factory/create-polymorphic-factory.mjs"; import React from "react"; //#region src/components/styles/typography/list/List.d.ts type ListProps = { variant?: 'ordered' | 'unordered'; border?: boolean; } & ElementProps<'ul', 'type'>; declare const List: ((props: PolymorphicComponentProps) => React.ReactElement) & Omit & AsElementProps & Omit, "key" | "variant" | "as" | keyof React.HTMLAttributes | "border"> & { ref?: any; renderRoot?: (props: any) => any; }) | ({ variant?: "ordered" | "unordered"; border?: boolean; } & ElementProps<"ul", "type"> & { as: keyof React.JSX.IntrinsicElements | React.JSXElementConstructor; renderRoot?: (props: Record) => any; })>, never> & { Item: typeof ListItem; }; type ListItemProps = ElementProps<'li'>; declare const ListItem: { ({ ...props }: ListItemProps): React.JSX.Element; displayName: string; }; //#endregion export { List, ListItem, ListItemProps, ListProps };