/**
* File Name: Image
*/
/** @jsx jsx */
import React from 'react';
import { ICoreBase } from '../../core';
export interface Iimage extends ICoreBase {
    src?: string;
    alt?: string;
    other?: any;
    ariaLabel?: string;
}
export declare const imageDefault: import("@emotion/utils").SerializedStyles;
export declare const Image: React.ForwardRefExoticComponent<Iimage & React.RefAttributes<HTMLImageElement>>;
