/** * @description: 排序设置 * @return {*} */ declare const SORT_SETTINGS: { show: boolean; list: { columnKey: string; key: string; type: string; localFilter: boolean; }[]; }; /** * @description: 列配置 * @return {*} */ declare const COLUMN_SETTING: { show: boolean; storageMode: string; }; declare const FILTER: (locales: any) => { show: boolean; quickFilterMaxLength: number; list: { key: string; type: string; columnKey: string; sort: boolean; localFilter: boolean; isCustom: boolean; name: string; other: { size: string; allowClear: boolean; placeholder: any; trigger: string[]; style: { width: number; }; }; }[]; }; export { SORT_SETTINGS, COLUMN_SETTING, FILTER };