import type { Snippet } from 'svelte'; export type ActionBarVariant = 'dock' | 'inline'; interface ActionBarProps { submitLabel?: string; cancelLabel?: string; loading?: boolean; disabled?: boolean; dirty?: boolean; message?: string; savedMessage?: string; /** dock = floating pill ยท inline = sticky panel footer */ variant?: ActionBarVariant; sticky?: boolean; showCancel?: boolean; class?: string; extra?: Snippet; onsubmit?: () => void; oncancel?: () => void; } declare const ActionBar: import("svelte").Component; type ActionBar = ReturnType; export default ActionBar;