import type { OldBaseTextProps } from '../text/converter.old'; import type { OldTooltipProps } from '../tooltip/converter.old'; import type { CopyTextProps } from './CopyText'; export interface OldCopyTextProps extends Omit { textProps?: OldBaseTextProps; tooltipProps?: Omit; } export declare function convertOldCopyTextProps(props: OldCopyTextProps): CopyTextProps;