import React from 'react'; import { RowProps } from '../grid/row'; import { ColProps } from '../grid/col'; export interface Grid extends RowProps, ColProps { } export interface ListContextValue { onRightClick?: React.MouseEventHandler; onClick?: React.MouseEventHandler; grid?: Grid; } declare const ListContext: React.Context; export default ListContext;