import { type SyntheticEvent } from 'react'; import { type CopyTypographyProps } from '../CopyTypography'; type UseLogicParams = CopyTypographyProps; export declare const useLogic: ({ children, copyText, isShowCopyText, copyPosition, }: UseLogicParams) => { handleMouseLeave: () => void; handleClick: (event: SyntheticEvent) => void; tooltipTitle: string; isIconOnLeft: boolean; }; export {};