/// import type { FormState } from '@sinoui/rx-form-state'; import type { RestPageResponseInfo } from '@sinoui/use-rest-page-api'; export interface ReadListPageContextType { /** * 表格数据源 */ dataSource: RestPageResponseInfo; /** * 表单id */ formId: string; /** * 查询区域formState */ searchConditionsForm: FormState; /** * 请求接口 */ url: string; /** * 查询条件是否默认展开: 0折叠 1展开 */ defaultExpandQuery?: '0' | '1'; } /** * 已阅列表上下文对象 */ declare const ReadListPageContext: import("react").Context; export default ReadListPageContext;