import { PreviewableImageProps } from '../../primitives/image-preview.js'; export type ImageProps = Omit & { alt?: string | null; circular?: boolean; previewable?: boolean; size?: number | null; }; export declare function Image({ alt, circular, className, height, previewable, size, width, ...props }: ImageProps): import("react").JSX.Element;