/** @typedef {typeof __propDef.props} LoadingIndicatorProps */ /** @typedef {typeof __propDef.events} LoadingIndicatorEvents */ /** @typedef {typeof __propDef.slots} LoadingIndicatorSlots */ export default class LoadingIndicator extends SvelteComponentTyped<{ class?: string | undefined; }, { [evt: string]: CustomEvent; }, {}> { } export type LoadingIndicatorProps = typeof __propDef.props; export type LoadingIndicatorEvents = typeof __propDef.events; export type LoadingIndicatorSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};