import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../type"; import React from "react"; import { ExpressData } from "@kmkf-fe-packages/kmkf-utils"; import TrajectoryCompany from "./trajectoryCompany"; import TrajectoryCode from "./trajectoryCode"; import TrajectorySnapshot from "./trajectorySnapshot"; import TrajectoryStatus from "./trajectoryStatus"; import TrajectoryLastLogisticsInfo from "./trajectoryLastLogisticsInfo"; import TrajectoryLastUpdateTime from "./trajectoryLastUpdateTime"; import TrajectoryApiStatus from "./trajectoryApiStatus"; declare class LogisticsTrajectory implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; expressDateInstance: InstanceType; express: TrajectoryCompany; expressCode: TrajectoryCode; expressSnapshot: TrajectorySnapshot; trajectoryStatus: TrajectoryStatus; trajectoryLastLogisticsInfo: TrajectoryLastLogisticsInfo; trajectoryLastUpdateTime: TrajectoryLastUpdateTime; trajectoryApiStatus: TrajectoryApiStatus; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; 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; snapshot: any; trajectoryStatus: any; trajectoryApiStatus: any; trajectoryLastUpdateTime: any; trajectoryLastLogisticsInfo: 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"; })[]; } export default LogisticsTrajectory;