import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltCursorPointerArrowWireframe } from './VeltCursorPointerArrowWireframe/VeltCursorPointerArrowWireframe';
import { IVeltCursorPointerAudioHuddleWireframe } from './VeltCursorPointerAudioHuddleWireframe/VeltCursorPointerAudioHuddleWireframe';
import { IVeltCursorPointerAvatarWireframe } from './VeltCursorPointerAvatarWireframe/VeltCursorPointerAvatarWireframe';
import { IVeltCursorPointerDefaultWireframe } from './VeltCursorPointerDefaultWireframe/VeltCursorPointerDefaultWireframe';
import { IVeltCursorPointerVideoHuddleWireframe } from './VeltCursorPointerVideoHuddleWireframe/VeltCursorPointerVideoHuddleWireframe';
export interface IVeltCursorPointerWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltCursorPointerWireframe extends React.FC<IVeltCursorPointerWireframeProps> {
    Arrow: IVeltCursorPointerArrowWireframe;
    AudioHuddle: IVeltCursorPointerAudioHuddleWireframe;
    Avatar: IVeltCursorPointerAvatarWireframe;
    Default: IVeltCursorPointerDefaultWireframe;
    VideoHuddle: IVeltCursorPointerVideoHuddleWireframe;
}
declare const VeltCursorPointerWireframe: IVeltCursorPointerWireframe;
export default VeltCursorPointerWireframe;
