@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
9 lines (8 loc) • 460 B
TypeScript
import React from 'react';
import { PickerColumn, PickerColumnItem, PickerValue, PickerValueExtend } from '../picker-view/PropsType';
import { PickerPropsType } from './PropsType';
export interface PickerProps extends PickerPropsType {
}
export { PickerColumn, PickerColumnItem, PickerValue, PickerValueExtend };
declare const Picker: React.ForwardRefExoticComponent<PickerProps & React.RefAttributes<import("./Picker").PickerActions>>;
export default Picker;