import type { CustomQuery } from '@sinoform/types'; declare const DEFAULT_COLUMNS_FIELDS: ({ id: string; fieldName: string; title: string; type: string; selfTitle: string; sortable?: undefined; } | { id: string; fieldName: string; title: string; type: string; sortable: boolean; selfTitle: string; })[]; declare const DEFAULT_SEARCH_TABLE_COLUMNS: { id: string; fieldName: string; title: string; type: string; selfTitle: string; }[]; declare const DEFAULT_DATA_STATUS_COLUMN: { id: string; fieldName: string; title: string; type: string; selfTitle: string; }[]; declare const END_TIME_COLUMN: { id: string; fieldName: string; title: string; type: string; sortable: boolean; selfTitle: string; }[]; declare const DONE_LIST_STATUS_COLUMN: { id: string; fieldName: string; title: string; type: string; }[]; /** * 待办列表额外固定字段 */ export declare const TODO_LIST_EXTRA_FIELDS: ({ title: string; fieldName: string; id: string; type: string; sortable?: undefined; } | { id: string; fieldName: string; title: string; sortable: boolean; type: string; })[]; /** * 已办列表额外固定字段 */ export declare const DONE_LIST_EXTRA_FIELDS: ({ title: string; fieldName: string; id: string; type: string; sortable?: undefined; } | { id: string; fieldName: string; title: string; sortable: boolean; type: string; })[]; /** * 开启定制模式的默认查询条件 */ declare const DEFAULT_CUSTOM_QUERY_IN_TODO: CustomQuery[]; /** * 已办列表的默认查询条件 * * 当没开启列表定制 或者开启列表定制且没有开启查询条件定制时使用 */ declare const DEFAULT_CUSTOM_QUERY_IN_DONE: CustomQuery[]; /** * 查询列表额外自定义列 */ declare const SEARCH_LIST_EXTRA_FIELDS: { id: string; fieldName: string; title: string; type: string; selfTitle: string; }[]; export { DEFAULT_COLUMNS_FIELDS, DEFAULT_CUSTOM_QUERY_IN_DONE, DEFAULT_CUSTOM_QUERY_IN_TODO, DEFAULT_DATA_STATUS_COLUMN, DEFAULT_SEARCH_TABLE_COLUMNS, DONE_LIST_STATUS_COLUMN, END_TIME_COLUMN, SEARCH_LIST_EXTRA_FIELDS, }; /** * 已办列表页名称 */ export declare const DONE_LIST_PAGE = "DONE_LIST_PAGE"; /** * 待办列表页名称 */ export declare const TODO_LIST_PAGE = "TODO_LIST_PAGE"; /** * 草稿列表页名称 */ export declare const DRAFT_LIST_PAGE = "DRAFT_LIST_PAGE"; /** * 查询列表页名称 */ export declare const SEARCH_LIST_PAGE = "SEARCH_LIST_PAGE"; /** * 无流程表单列表页名称 */ export declare const NOFLOW_LIST_PAGE = "NOFLOW_LIST_PAGE"; /** * 待阅列表 */ export declare const TO_READ_LIST_PAGE = "TO_READ_LIST_PAGE"; /** * 已阅列表 */ export declare const READ_LIST_PAGE = "READ_LIST_PAGE";