import { HTMLAttributes } from 'react'; import { Props as AvatarViewProps } from './AvatarView'; export type DotProps = Pick, 'children'> & { avatarSize?: AvatarViewProps['size']; variant?: 'notification' | 'online'; }; export default function Dot({ children, avatarSize, variant }: DotProps): import("react").JSX.Element; //# sourceMappingURL=Dot.d.ts.map