import * as React from "react"; import { ImageProps as FluentImageProps } from "@fluentui/react-components"; export interface ImageProps extends Omit { className?: string; /** Fallback image URL if the main image fails to load */ fallback?: string; /** Custom error handler */ onError?: (event: React.SyntheticEvent) => void; } declare const Image: React.ForwardRefExoticComponent>; export { Image }; //# sourceMappingURL=image.d.ts.map