import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../../type"; import React from "react"; import { BsType, BsMemo, BsHeaderGood } from "../common/index"; declare class BsReturn implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; effects: ComponentInterface["effects"]; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface["dataType"]; sortChildField: NonNullable; bsType: BsType; bsMemo: BsMemo; reissueGoods: BsHeaderGood; constructor(options: PickOption); getSortChildFields: () => { name: any; key: string; dataType: string; conditionOptionsSetting: any; }[]; renderClient: (record: any) => React.JSX.Element | null; renderPc: () => null; renderLog: (r: Record) => React.JSX.Element; getComponentValue: (r: Record) => any; renderExport: () => null; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => ({ searchDefaultConditions: "in"; type: string; id: string; name: string; filterComponentType: "Cascader"; props: { options: any[] | undefined; fieldNames: { label: string; value: string; children: string; }; }; formatFilterValue: (val: Array) => string[] | undefined; filterFn: (value: string) => (i: Record) => boolean; } | { searchDefaultConditions: "like"; type: string; id: string; name: string; filterComponentType: "Input"; props?: undefined; formatFilterValue?: undefined; filterFn?: undefined; })[]; } export default BsReturn;