import '@oicl/openbridge-webcomponents/dist/components/alert-icon/alert-icon.js'; import type { AlertType } from '@oicl/openbridge-webcomponents/dist/types.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; type?: AlertType; acknowledged?: boolean; active?: boolean; outline?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcAlertIcon: import("svelte").Component<$$ComponentProps, { AlertType: typeof AlertType; }, "">; type ObcAlertIcon = ReturnType; export default ObcAlertIcon;