import { TooltipProps, ButtonProps } from '../../../index'; import React from "react"; interface CopyToClipboardProps extends ButtonProps { value: string; text?: string; tips?: string; copiedTips?: string; tooltipProps?: TooltipProps; } declare const Component: React.ForwardRefExoticComponent>; export { Component as CopyToClipboard, type CopyToClipboardProps };