import { SvelteComponentTyped } from "svelte"; import type { StoryDef } from '../../ddl/stories'; export declare const story: StoryDef; declare const __propDef: { props: { statusProps?: { size: Size; status: 'success' | 'warning' | 'error' | 'info'; } | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type StatusIndicatorProps = typeof __propDef.props; export type StatusIndicatorEvents = typeof __propDef.events; export type StatusIndicatorSlots = typeof __propDef.slots; export default class StatusIndicator extends SvelteComponentTyped { get statusProps(): { size: Size; status: "error" | "success" | "warning" | "info"; }; } export {};