import { type MotionStyle } from 'framer-motion'; interface CopyIconProps { copied?: boolean; size?: MotionStyle['width']; className?: string; } export declare const CopyIcon: ({ copied, size, className }: CopyIconProps) => import("react/jsx-runtime").JSX.Element; export {};