import { FC } from 'react'; import './index.less'; export interface ActionContextProps { ctxSelectList: any[]; insert: (value: string) => void; } declare const ActionContext: FC; export default ActionContext;