import React from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; import type { SelectModel } from '../models/SelectModel'; export interface SelectProps { options: SelectModel[]; multible?: boolean; selected?: string | string[]; onSelect: (val: string | string[]) => void; styles?: StyleProp; placeholder?: string; } declare const Select: (props: SelectProps) => React.JSX.Element; export default Select; //# sourceMappingURL=Select.d.ts.map