import { ComponentInterface, PickOption, ColumnConfig, ALignType, Record } from '../../type'; import React from 'react'; declare class OrdinaryMoney implements ComponentInterface { name: string; id: 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']; constructor(options: PickOption); renderPc: (value: unknown, r: Record) => any; renderLog: (r: Record) => any; getComponentValue: (r: Record) => any; renderExport: (value: any) => any; renderClient: (record: any) => React.JSX.Element | null; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "between"; type: string; id: string; name: string; filterComponentType: "Rate"; rules: { validator: (_: any, value: Array) => Promise; }[]; props: { placeholder: string[]; }; formatFilterValue: (val: Array) => (number | null)[]; filterFn: (value: string) => (i: Record) => boolean; }; } export default OrdinaryMoney;