export type AutosaveStatus = 'idle' | 'dirty' | 'saving' | 'saved' | 'error'; interface AutosaveIndicatorProps { status?: AutosaveStatus; /** Shown when status is `saved` */ savedLabel?: string; savingLabel?: string; dirtyLabel?: string; errorLabel?: string; idleLabel?: string; /** Optional timestamp / relative text next to saved */ lastSaved?: string; size?: 'sm' | 'md'; class?: string; } declare const AutosaveIndicator: import("svelte").Component; type AutosaveIndicator = ReturnType; export default AutosaveIndicator;