import { default as React } from 'react'; export type SingleSelectContextType = { name?: string; disabled?: boolean; required?: boolean; value?: string; onValueChange?: (newValue: string, e?: React.SyntheticEvent) => void; }; export interface SingleSelectProps { name?: string; disabled?: boolean; defaultValue?: string; onValueChange?: (newValue: string, e?: React.SyntheticEvent) => void; children: React.ReactNode; } export declare const SingleSelect: React.FC;