import { StandardProps } from '@tarojs/components'; import React from 'react'; import { BaseProps } from './picker'; export interface RPickerProps { descKey?: string; selectIcon?: string; missedIcon?: string; iconSize?: string | number; childSlot?: (val: any) => React.ReactNode; } interface OptionsPickerProps extends BaseProps, StandardProps, RPickerProps { showStatus?: boolean; } declare const _default: React.NamedExoticComponent; export default _default;