import React from 'react'; import type { ListGridType } from '.'; export interface ListConsumerProps { grid?: ListGridType; itemLayout?: string; } export const ListContext = React.createContext({}); export const ListConsumer = ListContext.Consumer;