import type { ReactNode } from "react"; import { type ImageProps as GeistImageProps } from "#geistdocs-ui/components/image"; type ImageSource = { src: string; srcDark?: never; srcLight?: never; } | { src?: never; srcDark: string; srcLight: string; }; export type ImageProps = Omit & ImageSource & { caption?: ReactNode; figureClassName?: string; }; /** A non-interactive documentation image with an optional caption. */ export declare const Image: ({ caption, className, figureClassName, src, srcDark, srcLight, ...props }: ImageProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=image.d.ts.map