import type React from 'react'; import type { ComponentProps } from 'react'; import { CopyIcon } from './CopyIcon'; interface CopyTextProps { value: string; children: React.ReactNode; size?: ComponentProps['size']; } export declare const CopyText: ({ value, children, size }: CopyTextProps) => import("react/jsx-runtime").JSX.Element; export {};