import React from "react"; import type { ControlledFormValue } from "../../internal/type"; export interface Props extends ControlledFormValue { allowNull: AllowNull; trueText?: string; falseText?: string; trueOptionFirst?: boolean; disabled?: boolean; className?: string; style?: React.CSSProperties; } export declare const BoolSelect: (props: Props) => React.JSX.Element;