import React from 'react'; import { OptionProps } from '../dropdown'; export interface ItemProps { title?: string; height?: string; onTap?: (open: boolean) => void; onShowMask?: (show: boolean) => void; children?: React.ReactNode; value?: string; options?: OptionProps[]; activeColor?: string; onChange?: (e: OptionProps) => void; disabled?: boolean; } declare const _default: React.ForwardRefExoticComponent>; export default _default;