import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltNotificationsPanelSettingsDescriptionWireframe } from './VeltNotificationsPanelSettingsDescriptionWireframe/VeltNotificationsPanelSettingsDescriptionWireframe';
import { IVeltNotificationsPanelSettingsBackButtonWireframe } from './VeltNotificationsPanelSettingsBackButtonWireframe/VeltNotificationsPanelSettingsBackButtonWireframe';
import { IVeltNotificationsPanelSettingsFooterWireframe } from './VeltNotificationsPanelSettingsFooterWireframe/VeltNotificationsPanelSettingsFooterWireframe';
import { IVeltNotificationsPanelSettingsHeaderWireframe } from './VeltNotificationsPanelSettingsHeaderWireframe/VeltNotificationsPanelSettingsHeaderWireframe';
import { IVeltNotificationsPanelSettingsListWireframe } from './VeltNotificationsPanelSettingsListWireframe/VeltNotificationsPanelSettingsListWireframe';
import { IVeltNotificationsPanelSettingsMuteAllDescriptionWireframe } from './VeltNotificationsPanelSettingsMuteAllDescriptionWireframe/VeltNotificationsPanelSettingsMuteAllDescriptionWireframe';
import { IVeltNotificationsPanelSettingsMuteAllTitleWireframe } from './VeltNotificationsPanelSettingsMuteAllTitleWireframe/VeltNotificationsPanelSettingsMuteAllTitleWireframe';
import { IVeltNotificationsPanelSettingsMuteAllToggleWireframe } from './VeltNotificationsPanelSettingsMuteAllToggleWireframe/VeltNotificationsPanelSettingsMuteAllToggleWireframe';
import { IVeltNotificationsPanelSettingsTitleWireframe } from './VeltNotificationsPanelSettingsTitleWireframe/VeltNotificationsPanelSettingsTitleWireframe';
export interface IVeltNotificationsPanelSettingsWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltNotificationsPanelSettingsWireframe extends React.FC<IVeltNotificationsPanelSettingsWireframeProps> {
    BackButton: IVeltNotificationsPanelSettingsBackButtonWireframe;
    Description: IVeltNotificationsPanelSettingsDescriptionWireframe;
    Footer: IVeltNotificationsPanelSettingsFooterWireframe;
    Header: IVeltNotificationsPanelSettingsHeaderWireframe;
    List: IVeltNotificationsPanelSettingsListWireframe;
    MuteAllDescription: IVeltNotificationsPanelSettingsMuteAllDescriptionWireframe;
    MuteAllTitle: IVeltNotificationsPanelSettingsMuteAllTitleWireframe;
    MuteAllToggle: IVeltNotificationsPanelSettingsMuteAllToggleWireframe;
    Title: IVeltNotificationsPanelSettingsTitleWireframe;
}
declare const VeltNotificationsPanelSettingsWireframe: IVeltNotificationsPanelSettingsWireframe;
export default VeltNotificationsPanelSettingsWireframe;
