import { SvelteComponentTyped } from "svelte"; import type { Size } from '../../unocss/types'; declare const __propDef: { props: { size?: Size | undefined; icon?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; 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 {};