import { ALignType, ColumnConfig, ComponentInterface, PickOption, Record } from "../../type"; import React from "react"; declare class InterceptLogisticsCustomerCode implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; effects: ComponentInterface["effects"]; align: ALignType; width: number; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; options: ComponentInterface["options"]; optionsMap: { [key: string]: string; }; constructor(options: PickOption); getComponentValue: (record: Record) => string; renderClient: (record: Record) => React.JSX.Element | null; renderPc: (_value: any, record: Record) => string; renderLog: (record: Record) => any; renderExport: (_value: any, record: Record) => string; editRender: () => null; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "in"; type: string; id: string; name: string; filterComponentType: "MultipleSelect"; props: { options: any[]; }; formatFilterValue: (value: string[]) => string[]; filterFn: (value: string[]) => (record: Record) => boolean; }; } export default InterceptLogisticsCustomerCode;