import { ComponentInterface, PickOption, ColumnConfig, ALignType, Record } from '../../type'; import React from 'react'; import { ExpressInterceptData } from '@kmkf-fe-packages/kmkf-utils'; declare class InterceptStatus implements ComponentInterface { name: string; parentId: string; id: string; sortField: string; companyId: string; type: string; rules: any[]; componentConfig: ComponentInterface['componentConfig']; effects: ComponentInterface['effects']; align: ALignType; width: number; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; expressInterceptInstance: InstanceType; dataType: ComponentInterface['dataType']; options: ComponentInterface['options']; constructor(options: PickOption); getComponentValue: (r: Record) => any; renderStatus: (record: any, w?: number) => React.JSX.Element | "--"; renderClient: () => null; renderPc: (value: any, record: Record) => React.JSX.Element | "--"; 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: { label: string; value: string; }[]; }; formatFilterValue: (value: string[]) => string[]; }; } export default InterceptStatus;