import { ZImage_Props, ZImage_Slots } from '@zurich/dev-utils/code/Image'; import { ToReactSlots } from './helperTypes'; export type ReactImage_Props = ToReactSlots; type ReactImage_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Source: typeof Source; Image: typeof Image; }; declare const Source: { (props: { width: number; src: string; }): import("react/jsx-runtime").JSX.Element; displayName: string; }; declare const Image: { (props: { src: string; alt: string; 'blank-fallback'?: boolean; eager?: 'eager'; }): import("react/jsx-runtime").JSX.Element; displayName: string; }; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ReactImage_Type; export { Namespace as ReactImage };