type $$ComponentProps = { /** The current auto-save status */ status?: 'idle' | 'loading' | 'success' | 'error'; /** Optional error message */ error?: string; }; declare const AutoSaveIndicator: import("svelte").Component<$$ComponentProps, {}, "">; type AutoSaveIndicator = ReturnType; export default AutoSaveIndicator;