import React from 'react'; import { PressableComponentProps } from '../types/common'; export interface SelectValue { value: string; label: string; flagCode?: string; } export interface SelectProps extends PressableComponentProps { label: string; values: SelectValue[]; placeholder?: string; prefix?: boolean; messageType?: 'none' | 'error' | 'help'; message?: string; onChange?: (value: SelectValue) => void; disabled?: boolean; containerStyle?: string; } declare const Select: React.FC; export default Select;