import { FunctionComponent } from 'react' import { ViewProps } from '@tarojs/components' export interface PickerColumnProps extends ViewProps { valueKey?: string className?: string itemHeight?: number | string visibleItemCount?: number initialOptions?: Array defaultIndex?: number onChange?: (a: any) => void activeClass?: string refBase?: any } declare const PickerColumn: FunctionComponent export { PickerColumn }