import { ImageClassNameContract } from "@microsoft/fast-components-class-name-contracts-base"; import Foundation, { HandledProps } from "@microsoft/fast-components-foundation-react"; import React from "react"; import { ImageHandledProps, ImageProps, ImageUnhandledProps } from "./image.props"; export declare enum ImageSlot { source = "source" } declare class Image extends Foundation { static displayName: string; static defaultProps: Partial; protected handledProps: HandledProps; /** * Renders the component */ render(): React.ReactElement; } export default Image; export * from "./image.props"; export { ImageClassNameContract };