import { FocusableRefValue } from '@react-types/shared'; import * as React from 'react'; import { ButtonOwnProps } from './Button'; export declare type CopyButtonProps = { copyValue: string; } & ButtonOwnProps; declare const _CopyButton: React.ForwardRefExoticComponent<{ copyValue: string; } & import("@react-types/shared").PressEvents & import("@react-types/shared").FocusableProps & Omit & Omit & { children?: React.ReactNode; appearance?: import("./variants").AppearanceVals; intent?: import("../..").IntentVals; size?: "sm" | "md"; active?: boolean; disabled?: boolean; loading?: boolean; icon?: React.ReactElement> | import("@fortawesome/fontawesome-svg-core").IconProp; iconRight?: React.ReactElement> | import("@fortawesome/fontawesome-svg-core").IconProp; autoFocus?: boolean; noFocusRing?: boolean; fullWidth?: boolean; label?: string; } & React.RefAttributes>>; export { _CopyButton as CopyButton };