import { DefineComponent } from 'vue'; export interface ButtonCopyProps { /** * Text to be copied. */ text: string; } /** * **WangsVue - ButtonCopy** * * _ButtonCopy is a component for copying text to the clipboard._ * * --- --- * ![WangsVue](https://www.wangs.id/wp-content/uploads/2023/12/cropped-Logo_Wangsid-removebg-preview-192x192.png) * * @group buttons */ declare const ButtonCopy: DefineComponent< ButtonCopyProps, Record, Record >; export default ButtonCopy;