import React from 'react'; type CopyProps = { content: string; asChild?: boolean; }; declare const Copy: React.ForwardRefExoticComponent & CopyProps & React.RefAttributes>; export { Copy };