import { BoxProps } from '../Box'; import { PrismaneProps } from '../../types'; export type ImageProps = PrismaneProps<{ src?: string; srcSet?: string; alt?: string; sizes?: string; fit?: "contain" | "cover" | "fill" | "none" | "scale-down"; }, BoxProps<"img">>; declare const Image: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default Image; //# sourceMappingURL=Image.d.ts.map