import { NotificationType } from './notification-type'; export declare type NotificationButtonCallback = () => void; export declare type NotificationButton = { text: string; action?: NotificationButtonCallback; dismiss?: boolean; }; export declare type NotificationExtras = { id?: string | number; buttonText: string; type: NotificationType; onDismiss?: NotificationButtonCallback; buttons?: NotificationButton[]; }; //# sourceMappingURL=notification-extras.d.ts.map