import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltPresenceAvatarListWireframe } from './VeltPresenceAvatarListWireframe/VeltPresenceAvatarListWireframe';
import { IVeltPresenceAvatarRemainingCountWireframe } from './VeltPresenceAvatarRemainingCountWireframe/VeltPresenceAvatarRemainingCountWireframe';
export interface IVeltPresenceWireframeProps extends IVeltWireframeCommonProps {
    variant?: string;
}
export interface IVeltPresenceWireframe extends React.FC<IVeltPresenceWireframeProps> {
    AvatarList: IVeltPresenceAvatarListWireframe;
    AvatarRemainingCount: IVeltPresenceAvatarRemainingCountWireframe;
}
declare const VeltPresenceWireframe: IVeltPresenceWireframe;
export default VeltPresenceWireframe;
