import React, { type ImgHTMLAttributes } from 'react';
import { type SxProps, type Theme } from '../styles';
import './Image.types';
export interface ImageProps extends ImgHTMLAttributes {
variant?: 'square' | 'rounded' | 'circle';
sx?: SxProps;
}
declare const slots: {
root: {
slot: "root";
name: "MuiImage";
};
};
export type ImageSlots = keyof typeof slots;
declare const Image: React.FC;
export default Image;