import { ComponentInterface, PickOption, Record, ColumnConfig } from '../../type'; import React from 'react'; import OrdinaryHeader from './OrdinaryHeader'; import OrdinaryMoney from './OrdinaryMoney'; import OrdinarySerial from './OrdinarySerial'; declare class Ordinary implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; showContains: boolean; componentConfig: ComponentInterface["componentConfig"]; ordinaryMoney: OrdinaryMoney; ordinaryHeader: OrdinaryHeader; ordinarySerial: OrdinarySerial; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface['dataType']; constructor(options: PickOption); editRender: (p: any) => React.JSX.Element; renderPc: () => null; renderLog: (r: Record) => React.JSX.Element; getComponentValue: (r: Record) => { ordinaryMoney: any; ordinarySerial: any; ordinaryTaitou: any; }; renderExport: () => null; renderClient: (record: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => ({ searchDefaultConditions: "between"; type: string; id: string; name: string; filterComponentType: "Rate"; rules: { validator: (_: any, value: number[]) => Promise; }[]; props: { placeholder: string[]; }; formatFilterValue: (val: (number | null)[]) => (number | null)[]; filterFn: (value: string) => (i: Record) => boolean; } | { searchDefaultConditions: "like"; type: string; id: string; name: string; filterComponentType: "Input"; filterFn: (value: string) => (i: Record) => boolean; })[]; } export default Ordinary;