import type { CB_CONTENT_PROP_CLINK } from '../types'; type Props = { src: string; openNewTab: boolean; type: CB_CONTENT_PROP_CLINK['CB_CONTENT_PROP_CLINK_SPEC_TYPE']; internalSrc: string; }; export default function useCLINK(props: Props): { CLINKCursor: string; onClickCLINK: () => void; }; export {};