import React, { ReactNode } from "react"; type ListItemProps = { children: ReactNode; className?: string; onClick?: () => void; hasSeparator?: boolean; hasSeparatorIfLast?: boolean; groupName?: string; itemsAlignment?: "start" | "center"; }; export declare function ListItem({ children, className, onClick, hasSeparator, hasSeparatorIfLast, groupName, itemsAlignment }: ListItemProps): React.JSX.Element; type ListGroupProps = { children: ReactNode; className?: string; }; export declare function ListGroup({ children, className }: ListGroupProps): React.JSX.Element; type ListItemSectionProps = { children: ReactNode; className?: string; size?: "xs" | "sm"; action?: ReactNode; onClick?: () => void; }; export declare function ListItemSection({ children, className, size, action, onClick }: ListItemSectionProps): React.JSX.Element; export {}; //# sourceMappingURL=ListItem.d.ts.map