import { View } from 'react-native'; import React from 'react'; import { HandlerRef } from '../useNodesRef'; import type { AnyFunc } from '../types/common'; /** * ✔ value * ✔ bindchange * ✘ bindpickstart * ✘ bindpickend * ✔ mask-class * ✔ indicator-style: 优先级indicator-style.height > pick-view-column中的子元素设置的height * WebView Only: * ✔ indicator-class * ✔ mask-style * ✘ immediate-change */ interface PickerViewProps { children: React.ReactNode; value?: Array; bindchange?: AnyFunc; style?: { [key: string]: any; }; 'enable-wheel-animation'?: boolean; 'indicator-style'?: Record; 'mask-style'?: Record; 'enable-var'?: boolean; 'external-var-context'?: Record; 'enable-offset'?: boolean; } declare const _PickerView: React.ForwardRefExoticComponent>>; export default _PickerView;