import { SvelteComponent } from "svelte"; import type { StatusType } from './types.ts'; declare const __propDef: { props: { label?: string | undefined; status?: StatusType | undefined; dot?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type TagStatusProps = typeof __propDef.props; export type TagStatusEvents = typeof __propDef.events; export type TagStatusSlots = typeof __propDef.slots; export default class TagStatus extends SvelteComponent { } export {};