import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../type"; import React from "react"; declare class BasicTypeInput 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"]; templateId?: string; flowTemplateKey?: string; workOrderUniqueKey?: string; constructor(options: PickOption); getKeyByComponentType: (type: string) => string; 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; renderClient: (record: Record) => React.JSX.Element | null; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: { in: "in"; anylike: "anylike"; }; type: string; id: string; name: string; filterComponentType: "SelectInput"; props: { filterOptions: { label: string; value: string; }[]; }; filterFn: (value: string) => (i: Record) => boolean; formatFilterValue: (value: any) => any; }; } export default BasicTypeInput;