import { ReactNode, Ref, HTMLAttributes } from 'react'; export interface ListProps extends HTMLAttributes { /** List rows (typically `ListButton`, `ListItem`, `ListTitle`, or `ListSeparator`). */ children?: ReactNode; /** Extra classes for the list root. */ className?: string; /** Forwarded to the underlying `
`. */ ref?: Ref; } /** Shape of `List` defaults that can be supplied via `CladdProvider`'s `defaults` prop. */ export type ListDefaultProps = Partial>; export declare const List: (props: ListProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=List.d.ts.map