import { ComponentProps, FC, PropsWithChildren } from 'react'; import { Colors, DeepPartial } from '../../types/types'; import { ListGroupItemTheme } from './theme'; export interface ListGroupItemProps extends PropsWithChildren { active?: boolean; disabled?: boolean; color?: Colors; href?: string; icon?: FC>; onClick?: () => void; theme?: DeepPartial; } export declare const ListItem: FC, "color"> & Omit, "color">>; //# sourceMappingURL=ListItem.d.ts.map