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