import type React from 'react';
import { LinkProps } from '@mui/material';
interface SetupCardListItemProps {
    icon?: React.ReactNode;
    title: string;
    href?: string;
    target?: string;
    linkProps?: LinkProps;
}
export default function SetupCardListItem(props: SetupCardListItemProps): JSX.Element;
export {};
//# sourceMappingURL=setup-card-list-item.d.ts.map