import * as React from "react"; export type ImageWithFallbackProps = { src: string; fallbackImg: React.ReactNode; alt: string; width: number; height: number; className?: string; }; export declare const ImageWithFallback: ({ src, fallbackImg, alt, width, height, className, }: ImageWithFallbackProps) => string | number | bigint | boolean | Iterable | Promise | import("react/jsx-runtime").JSX.Element | null | undefined; //# sourceMappingURL=ImageWithFallback.d.ts.map