import type { PropsWithChildren } from 'react';
interface NullableTypeProps {
isNonNull: boolean;
}
export declare function NullableType({ isNonNull, children }: PropsWithChildren<NullableTypeProps>): import("react/jsx-runtime").JSX.Element;
export {};