import React from 'react'; import { JengaNotificationProps } from '../types'; interface NotificationFooterProps { hasDescription: boolean; actions: JengaNotificationProps['actions']; onClose: () => void; onDismiss: () => void; } /** * @internal This component is unstable and must not be used outside of `NotificationView`. */ export declare const NotificationFooter: React.NamedExoticComponent; export {};