import { type VariantProps } from 'class-variance-authority'; import { ComponentProps } from 'react'; declare const image: (props?: ({ fit?: "fill" | "contain" | "cover" | null | undefined; radius?: "small" | "none" | "medium" | "full" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface ImageProps extends ComponentProps<'img'>, VariantProps { fallback?: string; } export declare function Image({ alt, className, fit, radius, fallback, onError, onLoad, src, width, height, style, loading, decoding, ...props }: ImageProps): import("react/jsx-runtime").JSX.Element; export declare namespace Image { var displayName: string; } export {}; //# sourceMappingURL=image.d.ts.map