import * as React from 'react'; import { ITooltipProps } from './tooltip'; interface Props extends Partial { invalidMessage?: string; children: React.ReactNode; } declare function ValidationTooltip(props: Props): JSX.Element; export default ValidationTooltip;