import { SvelteComponent } from "svelte"; import type { FeedItemStatus } from './types.js'; declare const __propDef: { props: { status: FeedItemStatus; label?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type StatusLabelProps = typeof __propDef.props; export type StatusLabelEvents = typeof __propDef.events; export type StatusLabelSlots = typeof __propDef.slots; export default class StatusLabel extends SvelteComponent { } export {};