import { ImgHTMLAttributes, ReactElement } from "react";
type ThemedImageProps = Omit, "src" | "alt"> & {
/** Map of theme name to image source */
src: Record;
/**
* Shown before the theme resolves on the client.
* Defaults to a transparent 1x1 GIF to avoid hydration mismatch.
*/
fallback?: string;
/** Alt text (required for accessibility) */
alt: string;
};
declare function ThemedImage({ src, fallback, alt,...props }: ThemedImageProps): ReactElement;
export { ThemedImageProps, ThemedImage };