import { ComponentInterface, PickOption, ALignType, Record } from "../../type"; import React from "react"; import { AddressData } from "@kmkf-fe-packages/kmkf-utils"; declare class PaymentTid 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[]; originId: string; addressDateInstance: InstanceType; dataType: ComponentInterface["dataType"]; constructor(options: PickOption); renderAddress: (record: any) => React.JSX.Element; renderClient: () => null; renderPc: (value: any, record: Record) => React.JSX.Element | null; renderLog: (r: Record) => null; getComponentValue: (r: Record) => null; renderExport: (value: any, record: Record) => any; editRender: () => null; filterConfig: () => never[]; } export default PaymentTid;