import * as React from "react"; export interface IImageProps extends React.ImgHTMLAttributes { /** Should the image be circular? */ rounded?: boolean; /** WEBP source */ webpSrc?: string; } export declare function useRandomUserImageSrc(sampleUserSeed?: string): string; export declare function useDummyImageSrc(width: number, height: number): string; export declare function Image(props: IImageProps): JSX.Element;