import { NotificationItemProps, EmptyStateProps, ContainerProps } from "../Notification.interface"; export declare class NotificationItemObject { private _container; render(props?: Partial): this; get notificationItem(): HTMLElement; get indicator(): HTMLElement; get children(): HTMLElement; } export declare class NotificationContainerObject { render(props?: Partial): this; get notificationContainer(): HTMLElement; get children(): HTMLElement; } export declare class EmptyStateObject { render(props?: Partial): this; get text(): HTMLElement; get icon(): HTMLElement; }