import '@oicl/openbridge-webcomponents/dist/integration-systems/integration-bar-dropdown/integration-bar-dropdown.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; showHomeButton?: boolean; homeButtonActivated?: boolean; showClock?: boolean; showNotificationButton?: boolean; notificationButtonActivated?: boolean; notificationCount?: number; showNotificationCount?: boolean; showUserButton?: boolean; userButtonActivated?: boolean; showDimmingButton?: boolean; dimmingButtonActivated?: boolean; showSystemButton?: boolean; systemButtonActivated?: boolean; nStatusFields?: number; } export interface Events { onHomeButtonClicked?: (event: CustomEvent) => void; onDimmingButtonClicked?: (event: CustomEvent) => void; onNotificationButtonClicked?: (event: CustomEvent) => void; onUserButtonClicked?: (event: CustomEvent) => void; onSystemButtonClicked?: (event: CustomEvent) => void; } export interface Slots { vesselSelector?: Snippet; statusLabel1?: Snippet; statusIcon1?: Snippet; statusLabel2?: Snippet; statusIcon2?: Snippet; statusLabel3?: Snippet; statusIcon3?: Snippet; clock?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcIntegrationBarDropdown: import("svelte").Component<$$ComponentProps, {}, "">; type ObcIntegrationBarDropdown = ReturnType; export default ObcIntegrationBarDropdown;