import { ComponentInterface, PickOption, ColumnConfig, Record } from '../../type'; import React from 'react'; import EAlipayAccount from '../AlipayAccount'; import EAlipayName from '../AlipayName'; declare class Alipay implements ComponentInterface { name: string; id: string; sortField: string; type: string; rules: any[]; componentConfig: ComponentInterface["componentConfig"]; alipayAccount: EAlipayAccount; alipayName: EAlipayName; isCombinationComponent: boolean; formField: string; canSort: boolean; children: ComponentInterface[]; dataType: ComponentInterface['dataType']; constructor(options: PickOption); renderClient: (record: Record) => React.JSX.Element; renderPc: () => null; renderLog: (r: Record) => React.JSX.Element; getComponentValue: (r: Record) => { name: any; user: any; }; renderExport: () => null; editRender: (p: any) => React.JSX.Element; filterConfig: (item: ColumnConfig) => { searchDefaultConditions: "eq"; type: string; id: string; name: string; filterComponentType: "Input"; filterFn: (value: string) => (i: Record) => boolean; }[]; } export default Alipay;