/** * NotificationHistoryView Component * * Scrollable list of persisted notification history with type filtering. * * @since v2.9.1 */ import type React from 'react'; export interface NotificationHistoryViewProps { onClose: () => void; inputEnabled?: boolean; maxHeight?: number; } export declare function NotificationHistoryView({ onClose, inputEnabled, maxHeight }: NotificationHistoryViewProps): React.ReactElement; //# sourceMappingURL=NotificationHistoryView.d.ts.map