import { LazyImageProps } from "../LazyImage/index.js"; import React, { CSSProperties } from "react"; //#region src/components/FallbackLazyImage/index.d.ts interface FallbackLazyImageProps extends LazyImageProps { fallback: React.JSX.Element; width: string | number; height: string | number; duration?: CSSProperties['transitionDuration']; } declare const FallbackLazyImage: React.ForwardRefExoticComponent & React.RefAttributes>; //#endregion export { FallbackLazyImage }; //# sourceMappingURL=index.d.ts.map