import { StackProps } from '@chakra-ui/react'; import * as React from 'react'; export interface ListItemProps extends StackProps { title: string; subTitle: string; circleColor: string; icon?: React.ReactElement; isLastItem?: boolean; } export declare const ListItem: (props: ListItemProps) => JSX.Element;