import * as React from 'react'; interface Props { description?: React.ReactNode; children: React.ReactNode; className?: string; error: string | undefined; help?: string; id: string; isInvalid: boolean; isValid: boolean; label: React.ReactNode; required?: boolean; } export default function ValidationInput(props: Props): JSX.Element; export {};