import { HTMLAttributes } from 'vue';
export interface StatusBadgeProps {
variant?: 'stroke' | 'light';
dotted?: boolean;
state?: 'success' | 'warning' | 'error' | 'faded';
label: string;
class?: HTMLAttributes['class'];
}
declare const _default: typeof __VLS_export;
export default _default;
declare const __VLS_export: import('vue').DefineComponent & Readonly<{}>, {
variant: "stroke" | "light";
state: "success" | "warning" | "error" | "faded";
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;