import React from 'react'; import { WithThemeStyles } from '../style'; import { PickerColumn, PickerValue, PickerViewPropsType } from './PropsType'; import { PickerViewStyle } from './style/index'; export type RMCPickerViewProps = Omit & WithThemeStyles & { columns: PickerColumn[]; handleSelect: (value: PickerValue, index: number) => void; }; declare const _default: React.NamedExoticComponent; export default _default;