import { IComponentProps, IComponentStyle } from "./common"; import { Byo2Image, Picture as NativePicture, StretchMode, ImageData, AveImage } from "ave-ui"; export interface IImageComponentProps extends IComponentProps { src: string | AveImage; style?: IImageStyle; onLoad?: (byo2: Byo2Image, data: ImageData, picture: NativePicture) => void; } export interface IImageStyle extends IComponentStyle { stretchMode?: StretchMode; } export declare const Image: import("./common").ReactAveTag;