export type NotificationVariant = "success" | "locked" | "error" | "neutral"; export declare class Notification { el: HTMLIfxNotificationElement; /** Icon to display in the notification. */ readonly icon: string; /** Visual style of the notification (e.g. success, error). */ readonly variant: NotificationVariant; /** Text for the optional action link. */ readonly linkText: string; /** URL the notification link should navigate to. */ readonly linkHref: string; /** Where to open the link (same tab, new tab, etc.). */ readonly linkTarget: string; componentDidLoad(): Promise; private getClassName; render(): any; }