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