import { PropsWithChildren, ReactElement } from 'react'; import { ListItemProps, ListItem } from './components/ListItem'; export interface ListProps { className?: string; orientation: "adaptive" | "horizontal" | "vertical"; children: ReactElement | ReactElement[]; } export declare function List({ className, orientation, children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;