export interface Props { /** Custom loading message (overrides auto-detected phase label) */ message?: string; /** Whether to show the overlay (auto-detected from state if not provided) */ show?: boolean; /** Allow dismissing the overlay */ dismissible?: boolean; /** Custom CSS class */ class?: string; /** Callback when dismissed */ ondismiss?: () => void; } declare const AILoadingOverlay: import("svelte").Component; type AILoadingOverlay = ReturnType; export default AILoadingOverlay; //# sourceMappingURL=AILoadingOverlay.svelte.d.ts.map