UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

9 lines (8 loc) 394 B
import React from 'react'; import { WithThemeStyles } from '../style'; import { PickerViewPropsType } from './PropsType'; import { PickerViewStyle } from './style'; export interface PickerViewProps extends PickerViewPropsType, WithThemeStyles<PickerViewStyle> { } declare const PickerView: React.ForwardRefExoticComponent<PickerViewProps & React.RefAttributes<any>>; export default PickerView;