import React from "react"; import { ComponentInterface, ColumnConfig, Record, PickOption } from "../../type"; declare class Handler implements ComponentInterface { name: string; id: string; sortField: string; type: string; componentConfig: ComponentInterface["componentConfig"]; effects: ComponentInterface["effects"]; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; options: ComponentInterface["options"]; constructor(options: PickOption); newOptions: () => { label: string; value: string; }[]; renderPc: (v: unknown, record: Record) => React.JSX.Element; renderLog: () => null; getComponentValue: (r: Record) => any; renderExport: (value: { account: string; }[], record: Record) => string; renderClient: () => null; editRender: () => null; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "in"; type: string; id: string; name: string; filterComponentType: "MultipleSelect"; props: { options: { label: string; value: string; }[]; }; filterFn: (value: string) => (i: Record) => boolean; formatFilterValue: (value: any) => unknown[]; }; } export default Handler;