import '@oicl/openbridge-webcomponents/dist/components/progress-button/progress-button.js'; import type { ProgressButtonType, ButtonStyle, ProgressMode } from '@oicl/openbridge-webcomponents/dist/components/progress-button/progress-button.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; type?: ProgressButtonType; buttonStyle?: ButtonStyle; mode?: ProgressMode; value?: number; label?: string; disabled?: boolean; showProgress?: boolean; hasLeadingIcon?: boolean; hasTrailingIcon?: boolean; hasAlert?: boolean; progressiveIndeterminate?: boolean; showLabel?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcProgressButton: import("svelte").Component<$$ComponentProps, { ProgressButtonType: typeof ProgressButtonType; ButtonStyle: typeof ButtonStyle; ProgressMode: typeof ProgressMode; }, "">; type ObcProgressButton = ReturnType; export default ObcProgressButton;