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); renderClient: (record: any) => React.JSX.Element | null; renderPc: (value: any, record: Record) => React.JSX.Element; renderLog: (r: Record) => React.JSX.Element | null; getComponentValue: (r: Record) => { province: any; city: any; district: any; detail: any; name: any; mobile: any; }; renderExport: (value: any, record: Record) => string | null; editRender: (p: any) => React.JSX.Element; filterConfig: () => never[]; } export default PaymentTid;