import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { status?: "offline" | "online" | "away" | "connecting" | "idle" | undefined; size?: any; classes?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type OnlineStatusIndicatorProps = typeof __propDef.props; export type OnlineStatusIndicatorEvents = typeof __propDef.events; export type OnlineStatusIndicatorSlots = typeof __propDef.slots; export default class OnlineStatusIndicator extends SvelteComponentTyped { } export {};