/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import { type FC } from 'react';
import { type PresenceProps } from '../presence';
import { type AppearanceType, type IndicatorSizeType } from '../types';
interface PresenceWrapperProps extends PresenceProps {
    appearance: AppearanceType;
    size: IndicatorSizeType;
    testId?: string;
}
/**
 * __Presence wrapper__
 *
 * A presence wrapper is used internally to position presence ontop of the avatar.
 */
declare const PresenceWrapper: FC<PresenceWrapperProps>;
export default PresenceWrapper;
