import { ElementType, HTMLAttributes } from 'react'; import { default as styles } from './List.module.css'; export { styles as ListClasses }; export interface ListProps extends HTMLAttributes { /** Specifies the HTML tag or React component used to render the list, defaulting to `div`. */ Component?: ElementType; } /** * Renders a container for list items, applying platform-specific styles for consistency across different operating systems. * This component serves as a foundational element for creating lists in a user interface. */ export declare const List: ({ className, children, Component, ...restProps }: ListProps) => JSX.Element;