import type { CSSProperties } from 'react'; type CopyButtonProps = { size?: 'xsmall' | 'small' | 'medium' | 'large'; value: string; copyText?: string; copiedText?: string; sentiment?: 'primary' | 'neutral'; bordered?: boolean; className?: string; 'data-testid'?: string; children?: string; onCopy?: () => void; style?: CSSProperties; }; export declare function CopyButton({ size, value, copyText, copiedText, sentiment, bordered, className, children, 'data-testid': dataTestId, onCopy, style, }: CopyButtonProps): import("react").JSX.Element; export declare namespace CopyButton { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map