import type { HTMLAttributes } from "svelte/elements"; type InlineLoadingProps = Omit, "class"> & { label?: string; status?: "active" | "success" | "error" | "inactive"; locale?: string; class?: string; }; declare const InlineLoading: import("svelte").Component; type InlineLoading = ReturnType; export default InlineLoading; //# sourceMappingURL=InlineLoading.svelte.d.ts.map