export interface CopyableTextProps { /** The text to be copied */ text: string; /** Additional class name to style the text so it suits the design */ additionalClassName?: string; /** ARIA label for the copy button */ ariaLabelCopy?: string; /** ARIA label for the copied state */ ariaLabelHasBeenCopied?: string; /** custom value to be copied in place of the display text */ customCopyValue?: string; } export declare const CopyableText: ({ text, additionalClassName, ariaLabelCopy, ariaLabelHasBeenCopied, customCopyValue, }: CopyableTextProps) => import("react").JSX.Element;