import { ComponentInterface, PickOption, ColumnConfig, ALignType, Record } from "../../type"; import React from "react"; declare class InterceptApiStatus implements ComponentInterface { name: string; id: string; parentId: 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: (r: Record) => any; renderClient: (r: any) => React.JSX.Element | null; renderPc: (value: any, r: Record) => React.JSX.Element | "--"; renderLog: (r: Record) => React.JSX.Element | "--" | null; renderExport: (value: any, r: Record) => string; editRender: () => null; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "in"; type: string; id: string; name: string; filterComponentType: "MultipleSelect"; props: { options: any[]; }; filterFn: (value: string) => (i: Record) => boolean; }; } export default InterceptApiStatus;