import type { ChipProps } from 'primevue/chip'; import { ChipColor } from '../../enums'; interface WtProps extends ChipProps { /** * Chip color. "main" and "outline" are chip-specific colors * @type {ChipColor} * @default ChipColor.MAIN * @options ['main', 'outline', 'accent', 'secondary', 'secondary-50', 'success', 'danger', 'transfer'] */ color?: ChipColor; /** * Makes the chip removable * @type {boolean} * @default false */ removable?: boolean; } declare var __VLS_8: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_8) => any; }; declare const __VLS_base: import("vue").DefineComponent & Readonly<{}>, { color: ChipColor; removable: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };