import React from 'react'; export type GridCellLinkProps = { /** * Accessible tab index. You should generally pass through the tabIndex * provided to the Renderer component. */ tabIndex: number; /** * Display value */ label: string; } & Omit, 'tabIndex' | 'children' | 'as'>; declare const GridCellLinkImpl: ({ label, tabIndex, ...rest }: GridCellLinkProps) => React.JSX.Element; /** * * `import { GridCellLink } from '@planview/pv-grid'` * * **Deprecated**: Use `GridCellDefault` instead and pass the `href` prop. * * Cell to render a link * * Can receive any attribute of the anchor element apart from the label and tabIndex which are mandatory * * ### Responsiveness * The`GridCellLink` will apply a tooltip whenever the text is truncated * * * * ```tsx * const linkColumn: Column = { * id: "link", * cell: { * Renderer: ({ label, tabIndex }) => ( * * ) * } * } * ``` * * @deprecated Use `GridCellDefault` instead and pass the `href` prop. */ export declare const GridCellLink: typeof GridCellLinkImpl; export {}; //# sourceMappingURL=cell-link.d.ts.map