import { ComponentInterface, PickOption, ColumnConfig, Record } from "../../../type"; import React from "react"; declare class BsSystemOrder implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; effects: ComponentInterface["effects"]; isCombinationComponent: boolean; formField: string; canSort: boolean; dataType: ComponentInterface["dataType"]; children: ComponentInterface[]; sortChildField: { name: string; key: string; dataType: string; [key: string]: any; }[]; compoundConfig: ComponentInterface["compoundConfig"]; constructor(options: PickOption); getSortChildFields: () => any; renderClient: (record: any) => React.JSX.Element | null; renderPc: () => null; renderLog: (r: Record) => React.JSX.Element | null; getComponentValue: (r: Record) => any; renderExport: () => null; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "in"; type: string; id: string; name: string; filterComponentType: "Input"; formatFilterValue: (input: string) => string | string[]; }[]; } export default BsSystemOrder;