import * as React from 'react'; interface Props { children: (props: { className?: string; }) => React.ReactNode; description?: string; dirty: boolean; error: string | undefined; label?: React.ReactNode; touched: boolean | undefined; } export default function ModalValidationField(props: Props): JSX.Element; export {};