import { NotificationType } from "jb-notification"; //#region modules/jb-notification/wrapper/dist/jb-notification-wrapper.d.ts //#region modules/jb-notification/wrapper/lib/jb-notification-wrapper.d.ts declare class JBNotificationWrapperWebComponent extends HTMLElement { constructor(); initWebComponent(): void; static get observedAttributes(): string[]; attributeChangedCallback(name: string, oldValue: string, newValue: string): void; onAttributeChange(name: string, value: string): void; } //#endregion //#endregion //#region modules/jb-notification/manager/lib/jb-notification-manager.d.ts declare class NotificationManager { #private; get wrapperDom(): JBNotificationWrapperWebComponent; constructor(); new(params: NewNotificationProps): void; onNotificationClose(e: Event): void; } type NewNotificationProps = { title: string; type?: NotificationType; desc?: string; }; //#endregion export { NewNotificationProps, NotificationManager }; //# sourceMappingURL=jb-notification-manager.d.ts.map