import React from 'react';
import type { ValueProps } from '../../types';
export type ValueBooleanProps = ValueProps<boolean> & {
    trueText?: React.ReactNode;
    falseText?: React.ReactNode;
};
declare function BooleanComponent(props: ValueBooleanProps): import("react/jsx-runtime").JSX.Element;
export default BooleanComponent;
