import React from 'react';
import { IVeltNotificationsToolIconWireframe } from './VeltNotificationsToolIconWireframe/VeltNotificationsToolIconWireframe';
import { IVeltNotificationsToolLabelWireframe } from './VeltNotificationsToolLabelWireframe/VeltNotificationsToolLabelWireframe';
import { IVeltNotificationsToolUnreadCountWireframe } from './VeltNotificationsToolUnreadCountWireframe/VeltNotificationsToolUnreadCountWireframe';
import { IVeltNotificationsToolUnreadIconWireframe } from './VeltNotificationsToolUnreadIconWireframe/VeltNotificationsToolUnreadIconWireframe';
import { IVeltWireframeCommonProps } from '../../constants';
export interface IVeltNotificationsToolWireframeProps extends IVeltWireframeCommonProps {
    variant?: string;
}
export interface IVeltNotificationsToolWireframe extends React.FC<IVeltNotificationsToolWireframeProps> {
    Label: IVeltNotificationsToolLabelWireframe;
    UnreadIcon: IVeltNotificationsToolUnreadIconWireframe;
    Icon: IVeltNotificationsToolIconWireframe;
    UnreadCount: IVeltNotificationsToolUnreadCountWireframe;
}
declare const VeltNotificationsToolWireframe: IVeltNotificationsToolWireframe;
export default VeltNotificationsToolWireframe;
