import { SvelteComponentTyped } from "svelte"; import type { Status } from '../../theme/types'; declare const __propDef: { props: { status?: Status | undefined; size?: any; classes?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type StatusIndicatorProps = typeof __propDef.props; export type StatusIndicatorEvents = typeof __propDef.events; export type StatusIndicatorSlots = typeof __propDef.slots; export default class StatusIndicator extends SvelteComponentTyped { } export {};