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'; import { IVeltNotificationsPanelSettingsButtonWireframe } from './VeltNotificationsPanelSettingsButtonWireframe/VeltNotificationsPanelSettingsButtonWireframe'; import { IVeltNotificationsPanelSettingsWireframe } from './VeltNotificationsPanelSettingsWireframe/VeltNotificationsPanelSettingsWireframe'; import { IVeltNotificationsPanelTitleTextWireframe } from './VeltNotificationsPanelTitleTextWireframe/VeltNotificationsPanelTitleTextWireframe'; export interface IVeltNotificationsPanelWireframeProps extends IVeltWireframeCommonProps { } export interface IVeltNotificationsPanelWireframe extends React.FC { Content: IVeltNotificationsPanelContentWireframe; Header: IVeltNotificationsPanelHeaderWireframe; ReadAllButton: IVeltNotificationsPanelReadAllButtonWireframe; Title: IVeltNotificationsPanelTitleWireframe; ViewAllButton: IVeltNotificationsPanelViewAllButtonWireframe; CloseButton: IVeltNotificationsPanelCloseButtonWireframe; Skeleton: IVeltNotificationsPanelSkeletonWireframe; SettingsButton: IVeltNotificationsPanelSettingsButtonWireframe; Settings: IVeltNotificationsPanelSettingsWireframe; TitleText: IVeltNotificationsPanelTitleTextWireframe; } declare const VeltNotificationsPanelWireframe: IVeltNotificationsPanelWireframe; export default VeltNotificationsPanelWireframe;