import HdgElement from "@hdgd/core"; import "@hdgd/icons/lib/notify"; import "@hdgd/icons/lib/arrow-right"; export interface Props { text?: string; multiple?: boolean; closehide?: boolean; right?: string; safearea?: boolean; iconsize?: string; } export interface CustomEvent { rightclick?: () => void; } declare class HdgNoticebar extends HdgElement { text: string; bgcolor: string; color: string; lefthide: boolean; righthide: boolean; multiple: number; rightSlotRef: import("preact").RefObject; handleRightClick: () => void; handleRightSlotChange: () => void; render(): any; } export default HdgNoticebar;