import type { VNode } from 'vue'; import type { AppConfig } from '@nuxt/schema'; import theme from '#build/ui/prose/prompt'; import type { IconProps } from '../../types'; import type { ComponentConfig } from '../../types/tv'; type ProsePrompt = ComponentConfig; export interface ProsePromptProps { description?: string; /** * @IconifyIcon */ icon?: IconProps['name']; /** * @defaultValue ['copy'] */ actions?: ('copy' | 'cursor' | 'windsurf')[]; class?: any; ui?: ProsePrompt['slots']; } export interface ProsePromptSlots { default(props?: {}): VNode[]; } declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots & Readonly<{}>, { actions: ("copy" | "cursor" | "windsurf")[]; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProsePromptSlots>; type __VLS_WithSlots = T & { new (): { $slots: S; }; };