import React from 'react'; import type { FormNativeProps, Option } from '@zbanx/mobile-utils'; import './index.less'; declare type Value = { select?: string | number; input?: string; }; export declare type SelectInputProps = { options?: Option[]; mode?: 'picker' | 'popup'; placeholder?: React.ReactNode; label?: React.ReactNode; } & FormNativeProps; declare const SelectInput: React.NamedExoticComponent; export default SelectInput;