declare const CChip: import("vue").DefineComponent boolean; }; /** * Toggle the disabled state for the component. */ disabled: BooleanConstructor; /** * Displays a remove button inside the component. */ removable: BooleanConstructor; /** * Replaces the default remove icon with a custom icon node. */ removeIcon: { type: (StringConstructor | ObjectConstructor)[]; default: undefined; }; /** * Enables selectable behavior and keyboard toggle support. */ selectable: BooleanConstructor; /** * Controls the selected state of a selectable component. */ selected: BooleanConstructor; /** * Size the component small or large. * * @values 'sm', 'lg' */ size: { type: StringConstructor; validator: (value: string) => boolean; }; /** * Set the button variant to an outlined style. * * @values 'outline' */ variant: { type: StringConstructor; validator: (value: string) => value is "outline"; }; }>, () => import("vue").VNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("select" | "click" | "keydown" | "deselect" | "remove" | "selected-change")[], "select" | "click" | "keydown" | "deselect" | "remove" | "selected-change", import("vue").PublicProps, Readonly boolean; }; /** * Toggle the disabled state for the component. */ disabled: BooleanConstructor; /** * Displays a remove button inside the component. */ removable: BooleanConstructor; /** * Replaces the default remove icon with a custom icon node. */ removeIcon: { type: (StringConstructor | ObjectConstructor)[]; default: undefined; }; /** * Enables selectable behavior and keyboard toggle support. */ selectable: BooleanConstructor; /** * Controls the selected state of a selectable component. */ selected: BooleanConstructor; /** * Size the component small or large. * * @values 'sm', 'lg' */ size: { type: StringConstructor; validator: (value: string) => boolean; }; /** * Set the button variant to an outlined style. * * @values 'outline' */ variant: { type: StringConstructor; validator: (value: string) => value is "outline"; }; }>> & Readonly<{ onSelect?: ((...args: any[]) => any) | undefined; onClick?: ((...args: any[]) => any) | undefined; onKeydown?: ((...args: any[]) => any) | undefined; onRemove?: ((...args: any[]) => any) | undefined; onDeselect?: ((...args: any[]) => any) | undefined; "onSelected-change"?: ((...args: any[]) => any) | undefined; }>, { disabled: boolean; as: string; active: boolean; clickable: boolean; removable: boolean; selectable: boolean; selected: boolean; ariaRemoveLabel: string; removeIcon: string | Record; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; export { CChip };