import { HTMLAttributes } from 'react';
import { ImageProps as NextImageProps } from 'next/image';
import { ViewPort } from '@/types/cskTypes';
export type ImageProps = NextImageProps & {
containerStyle?: NonNullable['style']>;
overlayColor?: string;
contrastBaseColor?: string;
overlayOpacity?: NonNullable['opacity'];
border?: string | ViewPort;
};
export { Image as default } from './image';