/// import { FieldStyle } from '../field'; export declare function ThemeValue(theme: any, path: Array): any; export interface ISelect { theme?: any; fieldStyle?: FieldStyle; placeholder?: string; onChange?: any; options: Array; className?: string; } export declare const Select: ({ placeholder, onChange, options, className, ...props }: ISelect) => JSX.Element;