import React from "react"; import type { NiceAvatarProps } from "./types"; export interface AvatarProps extends Omit { /** HTML id attribute */ id?: string; /** CSS class name */ className?: string; /** Inline styles */ style?: React.CSSProperties; /** Avatar shape */ shape?: "circle" | "rounded" | "square"; } declare const ReactNiceAvatar: React.ForwardRefExoticComponent>; export default ReactNiceAvatar; export { genConfig, defaultOptions } from "./utils"; export type * from "./types";