import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltNotificationsPanelContentWireframe } from './VeltNotificationsPanelContentWireframe/VeltNotificationsPanelContentWireframe';
import { IVeltNotificationsPanelHeaderWireframe } from './VeltNotificationsPanelHeaderWireframe/VeltNotificationsPanelHeaderWireframe';
import { IVeltNotificationsPanelReadAllButtonWireframe } from './VeltNotificationsPanelReadAllButtonWireframe/VeltNotificationsPanelReadAllButtonWireframe';
import { IVeltNotificationsPanelTitleWireframe } from './VeltNotificationsPanelTitleWireframe/VeltNotificationsPanelTitleWireframe';
import { IVeltNotificationsPanelViewAllButtonWireframe } from './VeltNotificationsPanelViewAllButtonWireframe/VeltNotificationsPanelViewAllButtonWireframe';
import { IVeltNotificationsPanelCloseButtonWireframe } from './VeltNotificationsPanelCloseButtonWireframe/VeltNotificationsPanelCloseButtonWireframe';
import { IVeltNotificationsPanelSkeletonWireframe } from './VeltNotificationsPanelSkeletonWireframe/VeltNotificationsPanelSkeletonWireframe';
export interface IVeltNotificationsPanelWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelWireframe extends React.FC<IVeltNotificationsPanelWireframeProps> {
    Content: IVeltNotificationsPanelContentWireframe;
    Header: IVeltNotificationsPanelHeaderWireframe;
    ReadAllButton: IVeltNotificationsPanelReadAllButtonWireframe;
    Title: IVeltNotificationsPanelTitleWireframe;
    ViewAllButton: IVeltNotificationsPanelViewAllButtonWireframe;
    CloseButton: IVeltNotificationsPanelCloseButtonWireframe;
    Skeleton: IVeltNotificationsPanelSkeletonWireframe;
}
declare const VeltNotificationsPanelWireframe: IVeltNotificationsPanelWireframe;
export default VeltNotificationsPanelWireframe;
