import type { ILinkCellValue } from '@teable/core'; import type { ICellValue } from '../type'; interface ICellLink extends ICellValue { itemClassName?: string; } export declare const CellLink: (props: ICellLink) => import("react/jsx-runtime").JSX.Element; export {};