import { SvelteComponentTyped } from "svelte"; import type { StoryDef } from '../../ddl/stories'; export declare const story: StoryDef; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type LoadingIndicatorProps = typeof __propDef.props; export type LoadingIndicatorEvents = typeof __propDef.events; export type LoadingIndicatorSlots = typeof __propDef.slots; export default class LoadingIndicator extends SvelteComponentTyped { } export {};