import { default as React } from 'react'; import { VariantProps } from 'class-variance-authority'; declare const listVariants: (props?: ({ variant?: "none" | "ordered" | "unordered" | null | undefined; size?: "sm" | "md" | "lg" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; declare const listItemVariants: (props?: ({ variant?: "default" | "hover" | null | undefined; } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string; export interface ListProps extends React.HTMLAttributes, VariantProps { children: React.ReactNode; /** Custom spacing between items */ spacing?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; } export declare const List: React.ForwardRefExoticComponent>; export interface ListItemProps extends React.LiHTMLAttributes, VariantProps { children: React.ReactNode; /** Leading icon */ icon?: React.ReactNode; } export declare const ListItem: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=List.d.ts.map