import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../type"; import React from "react"; declare class BasicSelectOption implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; options: ComponentInterface["options"]; optionsMap: ComponentInterface["optionsMap"]; constructor(options: PickOption); getKeyByComponentType: (type: string) => any; editRender: (p: any) => React.JSX.Element; 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: Record) => any; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "in"; type: string; id: string; name: string; filterComponentType: "MultipleSelect"; props: { options: any[] | undefined; }; filterFn: (value: string) => (i: Record) => boolean; }; } export default BasicSelectOption;