import * as React from 'react'; import { PolymorphicComponentProps } from '../Box/types'; export declare type ImageOwnProps = { src: string; invertOnDark?: boolean; }; declare const defaultElement = "img"; export declare type ImageProps = PolymorphicComponentProps; export declare function Image({ className, invertOnDark, ...props }: ImageProps): JSX.Element; export {};