import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { Image as ImageElement, ImageProperties } from '@watching/clips/elements'; export interface ImageProps extends PropsWithChildren, 'cornerRadius'>> { ref?: ForwardedRef; cornerRadius?: ImageProperties['cornerRadius'] | boolean; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-image': ImageProps; } } } export declare const Image: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=Image.d.ts.map