import React from 'react'; interface BuyerNickValueType { buyerNick?: string; buyerOpenUid?: string; } interface BuyerNickProps { value: BuyerNickValueType; shopId: string; shopList: any[]; disabled: boolean; onChange: (value: BuyerNickValueType) => void; onBlur: (value: string, type: string) => void; } declare const BuyerNick: (props: Partial) => React.JSX.Element; export default BuyerNick;