UNPKG

@blueprintjs-formik/core

Version:
14 lines (13 loc) 541 B
/// <reference types="react" /> import { HTMLSelectProps as BPHTMLSelectProps } from '@blueprintjs/core'; import { FieldBaseProps } from './FieldBase'; export interface HTMLSelectProps extends Omit<FieldBaseProps, 'children' | 'component' | 'as'>, BPHTMLSelectProps { name: string; value?: string | number; } /** * HTML select wrapper for BP component to bind with Formik. * @param {TextAreaProps} props - * @returns {JSX.Element} */ export declare function HTMLSelect({ ...props }: HTMLSelectProps): JSX.Element;