import type { AsyncStateOptions } from "../async_state";
export interface ImageOptions {
/** Address of the resource */
src: string;
/** Images to use in different situations, e.g., high-resolution displays, small monitors, etc. */
srcset?: string;
/** Image sizes for different page layouts */
sizes?: string;
}
/**
* Reactive load an image in the browser, you can wait the result to display it or show a fallback.
*
* @param options Image attributes, as used in the
tag
* @param asyncStateOptions
*/
export declare function image(options: ImageOptions, async_state_options?: AsyncStateOptions): import("../async_state").AsyncStateReturn;