import React from 'react'; import { GridActionsCellItemProps } from '@mui/x-data-grid'; import { LinkComponentType } from '../../@types'; /** * A type-safe wrapper for GridActionsCellItem that properly handles custom props * for link components (like React Router's Link). * * This component solves the TypeScript issue where GridActionsCellItem doesn't * natively accept custom props like 'to' and 'state' that are needed for routing. */ interface GridActionsCellItemLinkProps extends Omit { component: LinkComponentType; to: string | object; state?: object; } export declare const GridActionsCellItemLink: React.FC; export {}; //# sourceMappingURL=GridActionsCellItemLink.d.ts.map