import { NotificationOptions, NotificationHandle } from './notification'; export { notificationProps } from './notification'; export type { NotificationOptions, NotificationHandle, NotificationInstance, NotificationType, NotificationPosition } from './notification'; type NotificationFn = { (options: NotificationOptions | string): NotificationHandle; success: (title: string, options?: Partial) => NotificationHandle; warning: (title: string, options?: Partial) => NotificationHandle; danger: (title: string, options?: Partial) => NotificationHandle; info: (title: string, options?: Partial) => NotificationHandle; closeAll: () => void; config: (opts: { max?: number; }) => void; }; declare const VxNotification: NotificationFn; export { VxNotification };