import React from 'react'; interface ShopNameType { value: number; onChange: (value: number) => void; disabled: boolean; style: any; } declare const ShopNameSelect: (props: Partial) => React.JSX.Element; export default ShopNameSelect;