import { BoxProps, ImageProps as ChakraImageProps } from '@chakra-ui/react';
import { default as React } from 'react';
export interface ImageProps extends ChakraImageProps {
    fallback?: React.ReactNode;
    skeletonWidth?: BoxProps['width'];
    skeletonHeight?: BoxProps['height'];
}
export declare const Image: React.ForwardRefExoticComponent<ImageProps & React.RefAttributes<HTMLImageElement>>;
