import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../../type"; import React from "react"; declare class SkxIdInputSelect implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; effects: ComponentInterface["effects"]; isCombinationComponent: boolean; formField: string; canSort: boolean; dataType: ComponentInterface["dataType"]; isChange: boolean; children: ComponentInterface[]; constructor(options: PickOption); renderClient: (record: Record) => 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; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "in"; type: string; id: string; name: string; filterComponentType: "Input"; formatFilterValue: (input: string) => string | string[]; }; } export default SkxIdInputSelect;