import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltNotificationsPanelContentAllWireframe } from './VeltNotificationsPanelContentAllWireframe/VeltNotificationsPanelContentAllWireframe';
import { IVeltNotificationsPanelContentDocumentsWireframe } from './VeltNotificationsPanelContentDocumentsWireframe/VeltNotificationsPanelContentDocumentsWireframe';
import { IVeltNotificationsPanelContentForYouWireframe } from './VeltNotificationsPanelContentForYouWireframe/VeltNotificationsPanelContentForYouWireframe';
import { IVeltNotificationsPanelContentPeopleWireframe } from './VeltNotificationsPanelContentPeopleWireframe/VeltNotificationsPanelContentPeopleWireframe';
import { IVeltNotificationsPanelContentLoadMoreWireframe } from './VeltNotificationsPanelContentLoadMoreWireframe/VeltNotificationsPanelContentLoadMoreWireframe';
import { IVeltNotificationsPanelContentListWireframe } from './VeltNotificationsPanelContentListWireframe/VeltNotificationsPanelContentListWireframe';
import { IVeltNotificationsPanelContentAllReadContainerWireframe } from './VeltNotificationsPanelContentAllReadContainerWireframe/VeltNotificationsPanelContentAllReadContainerWireframe';
export interface IVeltNotificationsPanelContentWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelContentWireframe extends React.FC<IVeltNotificationsPanelContentWireframeProps> {
    All: IVeltNotificationsPanelContentAllWireframe;
    ForYou: IVeltNotificationsPanelContentForYouWireframe;
    Documents: IVeltNotificationsPanelContentDocumentsWireframe;
    People: IVeltNotificationsPanelContentPeopleWireframe;
    LoadMore: IVeltNotificationsPanelContentLoadMoreWireframe;
    List: IVeltNotificationsPanelContentListWireframe;
    AllReadContainer: IVeltNotificationsPanelContentAllReadContainerWireframe;
}
declare const VeltNotificationsPanelContentWireframe: IVeltNotificationsPanelContentWireframe;
export default VeltNotificationsPanelContentWireframe;
