import React from 'react';
export interface ImageProps extends React.ComponentPropsWithoutRef<'img'> {
    /**
     * Defines how much is the image rounded
     */
    rounded?: 'default' | 'large' | 'full' | 'none';
}
declare const Image: React.ForwardRefExoticComponent<ImageProps & React.RefAttributes<HTMLImageElement>>;
export default Image;
//# sourceMappingURL=Image.d.ts.map