import { ReactNode } from 'react'; export interface Props { children?: ReactNode; controlID?: string; } export declare function InlineError({ children, controlID }: Props): JSX.Element;