import { AbstractImageProps } from "./Image"; import { ComponentProps, ReactNode } from "react"; import { OmitInternalProps } from "../../shared"; declare const DefaultElement = "img"; export interface InnerAsyncImageProps extends AbstractImageProps { /** * React children. */ children: ReactNode; /** * The number of milliseconds to delay the rendering of the fallback. */ delay?: number; /** * The allowed number of retry to load the async image. */ retryCount?: number; } export declare const AsyncImage: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type AsyncImageProps = ComponentProps; export {};