import '@oicl/openbridge-webcomponents/dist/integration-systems/integration-button/integration-button.js'; import type { IntegrationButtonReadout } from '@oicl/openbridge-webcomponents/dist/integration-systems/integration-button/integration-button.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; hasTrailingIcon?: boolean; hasTrailingIcon2?: boolean; hasLeadingIcon?: boolean; readouts?: IntegrationButtonReadout[]; disabled?: boolean; selected?: boolean; dividerBottom?: boolean; } export interface Events { } export interface Slots { leadingIcon?: Snippet; trailingIcon?: Snippet; trailingIcon2?: Snippet; label?: Snippet; status?: Snippet; infoLabel?: Snippet; infoStatus?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcIntegrationButton: import("svelte").Component<$$ComponentProps, { IntegrationButtonReadout: typeof IntegrationButtonReadout; }, "">; type ObcIntegrationButton = ReturnType; export default ObcIntegrationButton;