import { ClassComponent } from '../ts-helpers'; export interface ButtonCopyProps { /** * Text to copy. */ text: string; } /** * **TSVue v2 - ButtonCopy** * * _ButtonCopy is component for copyring text to clipboard and show toast succes copying._ * * --- --- * ![TSVue](https://ik.imagekit.io/kurniadev/TS-HEAD-BLACK.png) * * @group Component */ declare class ButtonCopy extends ClassComponent {} export default ButtonCopy;