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