import '@oicl/openbridge-webcomponents/dist/components/automation-button-readout-stack/automation-button-readout-stack.js'; import type { AutomationButtonReadoutStack, AutomationButtonReadoutStackTag, AutomationButtonReadoutStackSize, IdTagOrientation } from '@oicl/openbridge-webcomponents/dist/components/automation-button-readout-stack/automation-button-readout-stack.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; readouts?: AutomationButtonReadoutStack[]; tag?: AutomationButtonReadoutStackTag | null; size?: AutomationButtonReadoutStackSize; idTagOrientation?: IdTagOrientation; hasIdTag?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcAutomationButtonReadoutStack: import("svelte").Component<$$ComponentProps, { AutomationButtonReadoutStack: typeof AutomationButtonReadoutStack; AutomationButtonReadoutStackTag: typeof AutomationButtonReadoutStackTag; AutomationButtonReadoutStackSize: typeof AutomationButtonReadoutStackSize; IdTagOrientation: typeof IdTagOrientation; }, "">; type ObcAutomationButtonReadoutStack = ReturnType; export default ObcAutomationButtonReadoutStack;