import { ComponentInterface, PickOption, Record } from '../../type'; import React from 'react'; declare type Value = { name: string; value: number; id?: string; }[] | undefined; declare class BasicRate implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; rateMap: { [prop in number]: string; }; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface['dataType']; constructor(options: PickOption); render: (value: Value) => React.JSX.Element; renderClient: (record: Record) => React.JSX.Element | null; renderPc: (value: any, record: Record) => React.JSX.Element | null; renderLog: (r: Record) => React.JSX.Element | null; getComponentValue: (r: Record) => any; renderExport: (value: any, record: any) => any; editRender: (p: any) => React.JSX.Element; filterConfig: () => never[]; } export default BasicRate;