import React from 'react'; export declare const filterValue: { teamName: { value: string; radio: boolean; }; insuranceTypeName: { value: string; radio: boolean; }; insuranceNatureName: { value: string; radio: boolean; }; isDrg: { value: string; radio: boolean; }; isAnnotate: { value: string; radio: boolean; }; isSettle: { value: string; radio: boolean; }; diseaseGroup: { value: string; radio: boolean; }; medicalDivisionName: { value: string; radio: boolean; }; annotateType: { value: string; radio: boolean; }; isPoint: { value: string; radio: boolean; }; }; export declare const conFilter: (reset: any) => {}; export declare const filterMap: (data: any, isFilter: any, isPolicyAdaptation: any) => { teamCode?: undefined; teamName?: undefined; diseaseGroup?: undefined; insuranceTypeName?: undefined; insuranceNatureName?: undefined; medicalDivisionName?: undefined; annotateType?: undefined; isPoint?: undefined; isDrg?: undefined; isAnnotate?: undefined; isSettle?: undefined; } | { teamCode: any[]; teamName: any; diseaseGroup: any; insuranceTypeName: any; insuranceNatureName: any; medicalDivisionName: any; annotateType: any; isPoint: any; isDrg: { text: string; value: string; }[]; isAnnotate: { text: string; value: string; }[]; isSettle: { text: string; value: string; }[]; }; export declare const formatColumns: (columns: any, data: any, { isFilter, isPolicyAdaptation, filteredInfo, sortedInfo }: { isFilter: any; isPolicyAdaptation: any; filteredInfo: any; sortedInfo: any; }) => any; export declare const getColumns: (customHeader: any, noSoure?: boolean) => any[]; export declare const diffCondition: (pre: any, current: any) => boolean; export declare const useCheckRowCtrol: (data: any, pageNum: any, id: any) => ({ selectedRowKeys: any[]; rowList: {}; idlist: any[]; setRest?: undefined; rowSelectChange?: undefined; formatData?: undefined; setlist?: undefined; } | { setRest: () => void; rowSelectChange: (key: any, rows: any) => void; formatData: (data: any) => any[]; setlist: React.Dispatch>; selectedRowKeys?: undefined; rowList?: undefined; idlist?: undefined; })[];