## API Report File for "@fluentui/react-image"

> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).

```ts

import { BaseSlots } from '@fluentui/react-compose';
import { ComponentProps } from '@fluentui/react-compose';
import { ComposePreparedOptions } from '@fluentui/react-compose';
import * as React from 'react';
import { SlotProps } from '@fluentui/react-compose';

// @public (undocumented)
export const Image: import("@fluentui/react-compose").ComponentWithAs<"img", ImageProps>;

// @public (undocumented)
export const ImageBase: import("@fluentui/react-compose").ComponentWithAs<"img", ImageProps>;

// @public (undocumented)
export interface ImageProps extends ComponentProps, React.ImgHTMLAttributes<HTMLImageElement> {
    alt?: string;
    bordered?: boolean;
    circular?: boolean;
    fit?: 'none' | 'center' | 'contain' | 'cover';
    fluid?: boolean;
    rounded?: boolean;
    src?: string;
}

// @public (undocumented)
export type ImageSlotProps = SlotProps<ImageSlots, ImageProps, React.ImgHTMLAttributes<HTMLImageElement>>;

// @public (undocumented)
export interface ImageSlots extends BaseSlots {
}

// @public (undocumented)
export interface ImageState extends ImageProps {
    // (undocumented)
    imageRef: React.RefObject<HTMLElement>;
}

// @public
export const useImage: (props: ImageProps, ref: React.Ref<HTMLElement>, options: ComposePreparedOptions<{}, any, {}>) => ImageState;


// (No @packageDocumentation comment for this package)

```
