import { ALignType, ColumnConfig, ComponentInterface, PickOption, Record } from "../../type"; 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"]; constructor(options: PickOption); getComponentValue: (record: Record) => any; renderCustomerCodes: (record: Record) => any; renderClient: () => null; renderPc: (_value: any, record: Record) => any; renderLog: () => null; renderExport: (_value: any, record: Record) => any; 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;