import { AvatarChildrenProps, ContainerProps, ImageProps, StatusProps } from "./Avatar.interface"; declare const AvatarComponents: { Container: ({ children, shape, size, className, statusNode, statusPosition, }: ContainerProps) => import("react/jsx-runtime").JSX.Element; Text: ({ children, className }: AvatarChildrenProps) => import("react/jsx-runtime").JSX.Element; Image: ({ src, alt }: ImageProps) => import("react/jsx-runtime").JSX.Element; Status: ({ size, position, children }: StatusProps) => import("react/jsx-runtime").JSX.Element; }; export default AvatarComponents;