import { FC, PropsWithChildren } from "react"; export declare type ICopyTextProps = PropsWithChildren<{ copy: string; /** * Translation label for copy tooltips */ tooltip: string; }>; export declare const CopyText: FC;