import type { VNode } from 'vue'; import type { AppConfig } from '@nuxt/schema'; import theme from '#build/ui/kbd'; import type { KbdKey } from '../composables/useKbd'; import type { ComponentConfig } from '../types/tv'; type Kbd = ComponentConfig; export interface KbdProps { /** * The element or component this component should render as. * @defaultValue 'kbd' */ as?: any; value?: KbdKey | string; /** * @defaultValue 'neutral' */ color?: Kbd['variants']['color']; /** * @defaultValue 'outline' */ variant?: Kbd['variants']['variant']; /** * @defaultValue 'md' */ size?: Kbd['variants']['size']; class?: any; ui?: { base?: any; }; } export interface KbdSlots { default?(props?: {}): VNode[]; } declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots & Readonly<{}>, { as: any; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, KbdSlots>; type __VLS_WithSlots = T & { new (): { $slots: S; }; };