import React from 'react'; import type { PickerProps as AntPickerProps } from 'antd-mobile/es/components/picker'; import './index.less'; export interface PickerProps extends AntPickerProps { loading?: boolean; } declare const Picker: React.FC; export default Picker;