import * as React from "react"; interface ListProps extends React.HTMLAttributes { children: React.ReactNode; className?: string; /** Number of items to display per page. Pagination is enabled by default with 20 items per page. Set to 0 to disable pagination. */ pageSize?: number; } export declare const List: React.ForwardRefExoticComponent>; interface ListItemProps extends React.HTMLAttributes { children: React.ReactNode; className?: string; href?: string; onClick?: () => void; asChild?: boolean; } export declare const ListItem: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=list.d.ts.map