import { BoxProps } from '@mui/material';
interface TemplateSelectItemProps extends BoxProps {
    imageSrc?: string;
    imageAlt?: string;
    buttonLabel?: string;
    buttonSelectedLabel?: string;
    selected: boolean;
    websiteSrc?: string;
}
export default function TemplateSelectItem(props: TemplateSelectItemProps): JSX.Element;
export {};
//# sourceMappingURL=template-select-item.d.ts.map