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