import type { ActionButtonProps } from '../button/types.js'; import type { AriaLabelingProps, CommonProps, StringLikeChildren } from '../types.js'; import type { TextStyleOptions } from '../typography/types.js'; export interface CopyInlineProps extends CommonProps, AriaLabelingProps, Pick, Pick { /** The content to be copied. */ children: StringLikeChildren; /** A handler that gets called when the user triggers the copying. */ onCopy?: () => void; } /** * Allows copying an inline value to clipboard. * * See [copy inline usage guidelines](https://ui.cimpress.io/components/copy-inline/). */ declare const _CopyInline: (props: CopyInlineProps & import("react").RefAttributes & import("../../with-style-props.js").StyleProps) => import("react").JSX.Element | null; export { _CopyInline as CopyInline }; //# sourceMappingURL=copy-inline.d.ts.map