import React, { FunctionComponent, ReactNode } from 'react'; import { AddressList } from './type'; export interface ExistRenderProps { type: string; existAddress: AddressList[] | []; defaultIcon: ReactNode; selectedIcon: ReactNode; isShowCustomAddress: boolean; customAndExistTitle: string; onSelected?: (prevExistAdd: AddressList, item: AddressList, copyExistAdd: AddressList[]) => void; onClose?: (cal: { closeWay: string; }) => void; onSwitchModule?: (cal: { type: string; }) => void; } export declare const ExistRender: FunctionComponent & React.HTMLAttributes>;