export interface GridCellProps { row: number; column: number; } /** * 网格单元格样式(兼容IE11) */ declare const gridCellCss: ({ row, column }: GridCellProps) => any; export default gridCellCss;