export interface CopyProps { /** * Optional text to display instead of icon. */ text?: string; /** * The value to copy to clipboard. */ value: string; /** * Sets the copy icon or text to always be visible. By default, icon/text only appears when hovering over slot content. */ visible?: boolean; /** * Sets the mode of the copy component. */ mode?: 'icon' | 'text' | 'icon-button' | 'unset'; } declare var __VLS_1: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; }; declare const __VLS_base: import("vue").DefineComponent any; }, string, import("vue").PublicProps, Readonly & Readonly<{ onCopy?: (() => any) | undefined; }>, { text: string; mode: "icon" | "text" | "icon-button" | "unset"; visible: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };