import { ComponentInterface, PickOption, ColumnConfig, ALignType, Record } from "../../../type"; import React from "react"; import { ExpressData } from "@kmkf-fe-packages/kmkf-utils"; declare class JstItemSelect implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; align: ALignType; expressDateInstance: InstanceType; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; sortChildField: { name: string; key: string; dataType: string; [key: string]: any; }[]; 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: any) => any; editRender: (p: any) => React.JSX.Element; getSortChildFields: () => any; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "like"; type: string; id: string; name: string; filterComponentType: "Input"; filterFn: (value: string) => (i: Record) => any; }[]; } export default JstItemSelect;