import { BaseProps } from "../_utils/props.js"; import React, { CSSProperties } from "react"; //#region src/image/types.d.ts interface ImageProps extends BaseProps, Omit, 'placeholder'> { src?: string; placeholder?: React.ReactNode; alt?: string; width?: number | string; height?: number | string; round?: boolean; lazy?: boolean; fallback?: React.ReactNode; objectFit?: 'fill' | 'contain' | 'cover' | 'none' | 'scale-down'; imageClassName?: string; imageStyle?: CSSProperties; } //#endregion export { ImageProps }; //# sourceMappingURL=types.d.ts.map