import type { VNode } from 'vue'; import type { AppConfig } from '@nuxt/schema'; import theme from '#build/ui/chip'; import type { ComponentConfig } from '../types/tv'; type Chip = ComponentConfig; export interface ChipProps { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; /** Display some text inside the chip. */ text?: string | number; /** * @defaultValue 'primary' */ color?: Chip['variants']['color']; /** * @defaultValue 'md' */ size?: Chip['variants']['size']; /** * The position of the chip. * @defaultValue 'top-right' */ position?: Chip['variants']['position']; /** When `true`, keep the chip inside the component for rounded elements. */ inset?: boolean; /** When `true`, render the chip relatively to the parent. */ standalone?: boolean; class?: any; ui?: Chip['slots']; } export interface ChipEmits { 'update:show': [value: boolean]; } export interface ChipSlots { default?(props?: {}): VNode[]; content?(props?: {}): VNode[]; } declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots any; }, string, import("vue").PublicProps, Readonly & Readonly<{ "onUpdate:show"?: ((value: boolean) => any) | undefined; }>, { inset: boolean; standalone: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ChipSlots>; type __VLS_WithSlots = T & { new (): { $slots: S; }; };