import React from 'react';
export interface IVeltNotificationsPanelSettingsAccordionProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    accordionId?: string;
    notificationIndex?: string;
    defaultCondition?: boolean;
    accordionConfig?: any;
}
declare const VeltNotificationsPanelSettingsAccordion: React.FC<IVeltNotificationsPanelSettingsAccordionProps>;
export default VeltNotificationsPanelSettingsAccordion;
