import type { HTMLImgAttributes } from 'svelte/elements';
import type { WithElementRef, WithoutChildrenOrChild } from 'bits-ui';
export type ImageProps = WithoutChildrenOrChild<WithElementRef<HTMLImgAttributes, HTMLImageElement>> & {
    useThemeColor?: boolean;
    containerClasses?: string;
    blur?: boolean;
    showNormalOnHover?: boolean;
    alt: string;
};
declare const Image: import("svelte").Component<ImageProps, {}, "ref">;
type Image = ReturnType<typeof Image>;
export default Image;
