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