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