import { ComponentInterface, PickOption, ColumnConfig, ALignType, Record } from "../../type"; import React from "react"; declare class CommonMultiStatus implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; align: ALignType; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; isSingleValue: boolean; ext?: { [key: string]: any; }; constructor(options: PickOption, ext?: {}); renderClient: (record: any) => React.JSX.Element | null; renderPc: (value: any, record: Record) => React.JSX.Element; renderLog: (r: Record) => React.JSX.Element | null; getComponentValue: (r: Record) => any; renderExport: (value: any, record: any) => any; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "like" | "in"; type: string; id: string; name: string; filterComponentType: "MultipleSelect" | "SelectInput"; props: { options: any[] | undefined; fieldNames: { label: string; value: string; }; filterOptions: { label: string; value: string; }[]; }; filterFn: (value: string) => (i: Record) => boolean; formatFilterValue: ((value: any) => any) | null; }; } export default CommonMultiStatus;