/** * NotificationsStep Component * * Step for configuring notification preferences. * * @since v2.0.1 */ import type React from 'react'; import type { NotificationSettings, WizardStepProps } from './wizard-types.js'; export interface NotificationsStepProps extends Pick { /** Current notification settings */ value: NotificationSettings; /** Called when notification settings change */ onChange: (settings: NotificationSettings) => void; } export declare function NotificationsStep({ value, onChange, onNext, onBack, onCancel, isActive }: NotificationsStepProps): React.ReactElement; //# sourceMappingURL=NotificationsStep.d.ts.map