import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltNotificationsPanelHeaderTabDocumentsWireframe } from './VeltNotificationsPanelHeaderTabDocumentsWireframe/VeltNotificationsPanelHeaderTabDocumentsWireframe';
import { IVeltNotificationsPanelHeaderTabForYouWireframe } from './VeltNotificationsPanelHeaderTabForYouWireframe/VeltNotificationsPanelHeaderTabForYouWireframe';
import { IVeltNotificationsPanelHeaderTabPeopleWireframe } from './VeltNotificationsPanelHeaderTabPeopleWireframe/VeltNotificationsPanelHeaderTabPeopleWireframe';
import { IVeltNotificationsPanelHeaderTabAllWireframe } from './VeltNotificationsPanelHeaderTabAllWireframe/VeltNotificationsPanelHeaderTabAllWireframe';
export interface IVeltNotificationsPanelHeaderWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelHeaderWireframe extends React.FC<IVeltNotificationsPanelHeaderWireframeProps> {
    TabAll: IVeltNotificationsPanelHeaderTabAllWireframe;
    TabDocuments: IVeltNotificationsPanelHeaderTabDocumentsWireframe;
    TabForYou: IVeltNotificationsPanelHeaderTabForYouWireframe;
    TabPeople: IVeltNotificationsPanelHeaderTabPeopleWireframe;
}
declare const VeltNotificationsPanelHeaderWireframe: IVeltNotificationsPanelHeaderWireframe;
export default VeltNotificationsPanelHeaderWireframe;
