export type ListVariant = 'bullet' | 'dashed' | 'numbered' | 'alphabetical'; export interface ItemProps { children: React.ReactNode; } declare const Item: React.FC; export interface ListProps { /** List contents */ children: React.ReactNode; /** Changes the visual representation of the list. */ variant?: ListVariant; /** Adds margin above/below list */ margin?: boolean; /** Adds className to list element */ className?: string; /** Sets the data-testid attribute. */ testId?: string; } export interface ListCompound extends React.FC { Item: typeof Item; } declare const List: ListCompound; export default List;