import React from "react"; import type { ControlledFormValue } from "../../internal/type"; import type { BaseProps } from "./index"; export interface Props extends BaseProps, ControlledFormValue { nullText?: string; } export declare const Nullable: (props: Props) => React.JSX.Element;