import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../type"; import React from "react"; import { ExpressData } from "@kmkf-fe-packages/kmkf-utils"; import Express from "../Express"; import ExpressCode from "../ExpressCode"; declare class Logistics implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; expressDateInstance: InstanceType; express: Express; expressCode: ExpressCode; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; isChange: boolean; compoundConfig: ComponentInterface["compoundConfig"]; constructor(options: PickOption); editRender: (p: any) => React.JSX.Element; renderClient: (record: Record) => React.JSX.Element; renderPc: () => null; renderLog: (r: Record) => React.JSX.Element; getComponentValue: (r: Record) => { company: any; order: any; }; renderExport: () => null; filterConfig: (item: ColumnConfig) => ({ searchDefaultConditions: "in"; type: string; id: string; name: string; filterComponentType: "MultipleSelect"; props: { options: any[]; }; filterFn: (value: string) => (i: Record) => boolean; } | { searchDefaultConditions: "like"; type: string; id: string; name: string; filterComponentType: "Input"; filterFn: (value: string) => (i: Record) => boolean; })[]; } export default Logistics;