import '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button-motorized.js'; import type { AutomationButtonLabelDirection } from '@oicl/openbridge-webcomponents/dist/automation/automation-button/automation-button.js'; import type { MotorizedVariant } from '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button-motorized.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; on?: boolean; speedInPercent?: number; labelDirection?: AutomationButtonLabelDirection; variant?: MotorizedVariant; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcAbstractAutomationButtonMotorized: import("svelte").Component<$$ComponentProps, { AutomationButtonLabelDirection: typeof AutomationButtonLabelDirection; MotorizedVariant: typeof MotorizedVariant; }, "">; type ObcAbstractAutomationButtonMotorized = ReturnType; export default ObcAbstractAutomationButtonMotorized;