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