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