import React from 'react'; import { WithThemeStyles } from '../style'; import { PickerViewPropsType } from './PropsType'; import { PickerViewStyle } from './style'; export interface PickerViewProps extends PickerViewPropsType, WithThemeStyles { } declare const PickerView: React.ForwardRefExoticComponent>; export default PickerView;