import { Component, PropType } from 'vue'; import { AsTag } from '../../primitive'; import { ChipVariantProps } from './chip.themes'; export declare const chipProps: { as: { type: PropType; default: string; }; variant: { type: PropType; default: string; }; color: { type: PropType; default: string; }; size: { type: PropType; default: string; }; radius: { type: PropType; default: string; }; isDisabled: { type: PropType; default: boolean; }; isCloseable: { type: PropType; default: boolean; }; }; export declare const chipEmits: { close: (e: any) => any; };