import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltCommentPinGhostCommentIndicatorProps } from './VeltCommentPinGhostCommentIndicator/VeltCommentPinGhostCommentIndicator';
import { IVeltCommentPinIndexProps } from './VeltCommentPinIndex/VeltCommentPinIndex';
import { IVeltCommentPinTriangleProps } from './VeltCommentPinTriangle/VeltCommentPinTriangle';
import { IVeltCommentPinUnreadCommentIndicatorProps } from './VeltCommentPinUnreadCommentIndicator/VeltCommentPinUnreadCommentIndicator';
import { IVeltCommentPinPrivateCommentIndicatorProps } from './VeltCommentPinPrivateCommentIndicator/VeltCommentPinPrivateCommentIndicator';
import { IVeltCommentPinNumber } from './VeltCommentPinNumber/VeltCommentPinIndex';
export interface IVeltCommentPinWireframeProps extends IVeltWireframeCommonProps {
}
declare const VeltCommentPinWireframe: React.FC<IVeltCommentPinWireframeProps> & {
    GhostCommentIndicator: React.FC<IVeltCommentPinGhostCommentIndicatorProps>;
    Index: React.FC<IVeltCommentPinIndexProps>;
    Number: IVeltCommentPinNumber;
    PrivateCommentIndicator: React.FC<IVeltCommentPinPrivateCommentIndicatorProps>;
    Triangle: React.FC<IVeltCommentPinTriangleProps>;
    UnreadCommentIndicator: React.FC<IVeltCommentPinUnreadCommentIndicatorProps>;
};
export default VeltCommentPinWireframe;
