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