import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../../type"; import React from "react"; import { ExpressData } from "@kmkf-fe-packages/kmkf-utils"; import ExpressCompany from "../common/expressCompany"; import ExpressCode from "../common/expressCode"; declare class BsLogistics implements ComponentInterface { name: string; id: string; sortField: string; sortChildField: { name: string; key: string; dataType: string; [key: string]: any; }[]; type: string; platformType: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; expressDateInstance: InstanceType | undefined; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; expressCompany: ExpressCompany; expressCode: ExpressCode; isChange: boolean; effects: ComponentInterface["effects"]; constructor(options: PickOption); renderClient: (record: any) => React.JSX.Element | null; getSortChildFields: (type: string, options: PickOption) => any; renderPc: (value: any, record: Record) => React.JSX.Element; renderLog: (r: Record) => React.JSX.Element | null; getComponentValue: (r: Record) => any; renderExport: () => null; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => ({ searchDefaultConditions: "in"; filterComponentType: "MultipleSelect"; props: { options: any[]; filterOptions?: undefined; }; filterFn: (value: string) => (i: Record) => any; type: string; id: string; name: string; } | { 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 BsLogistics;