export interface IBadgeProps { type?: 'positive' | 'negative' | 'process' | 'info' | 'deactive' | 'neutral'; /** * Вариант фона: светлый или темный */ variant?: 'light' | 'dark'; /** * Текст */ text?: string; } declare const _sfc_main: import("vue").DefineComponent<{ type: { type: StringConstructor; required: false; default: string; }; variant: { type: StringConstructor; required: false; default: string; }; text: { type: StringConstructor; required: false; default: string; }; }, { props: any; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>, { type: string; variant: string; text: string; }, {}>; export default _sfc_main;