import { VegaPageNotificationActionButtonConfig, VegaPageNotificationTypes, } from '../../components/vega-page-notification/types'; export type VegaNotifyOption = { title?: string; message: string; type?: VegaPageNotificationTypes; duration?: number; showCloseButton?: boolean; actionButtons?: VegaPageNotificationActionButtonConfig[]; };