/** * @jsxRuntime classic * @jsx jsx */ import { type FC } from 'react'; import { type StatusProps } from '../status'; import { type AppearanceType, type IndicatorSizeType } from '../types'; interface StatusWrapperProps extends StatusProps { appearance: AppearanceType; size: IndicatorSizeType; testId?: string; } /** * __Status wrapper__ * * A status wrapper is used internally to position status on top of the avatar. */ declare const StatusWrapper: FC; export default StatusWrapper;