export default Cmp; type Cmp = SvelteComponent<{ [x: string]: never; }, { [evt: string]: CustomEvent; }, {}> & { $$bindings?: string | undefined; }; /** * Internal spinner glyph. Fills its inline-box (defaults to 1em × 1em); inherits * `currentColor` for stroke. Used by Button (loading state), Singleselect (async), * and any future async-loading affordance. * * ### CSS Custom Properties * | Property | Description | Default | * |---|---|---| * | `--sc-kit--spinner--size` | Outer box size | `1em` | * | `--sc-kit--spinner--duration` | Rotation duration | `800ms` | */ declare const Cmp: $$__sveltets_2_IsomorphicComponent<{ [x: string]: never; }, { [evt: string]: CustomEvent; }, {}, {}, string>; interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import("svelte").ComponentConstructorOptions): import("svelte").SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; }