import React from 'react'; import { ContentNode } from '../../types'; import Button from '../Button'; import Tooltip from '../Tooltip'; type ButtonProps = React.ComponentProps; export interface CopyButtonProps extends Omit { value: string; variant?: Extract; children?: ContentNode; notificationLabel?: ContentNode; hideVisibleLabel?: boolean; tooltipPlacement?: React.ComponentProps['placement']; onCopy?: (text: string) => void; } declare const CopyButton: React.ForwardRefExoticComponent & React.RefAttributes>; export default CopyButton;