import * as React from "react"; import type { MergeElementProps } from "../../typings"; interface FormControlFeedbackBaseProps { /** The content of the component. */ children?: React.ReactNode; /** * Append to the classNames applied to the component so you can override or * extend the styles. */ className?: string; /** * If `true`, the feedback will indicate invalid input. * @default false */ hasError?: boolean; } export declare type FormControlFeedbackProps = MergeElementProps<"div", FormControlFeedbackBaseProps>; declare type Component = { (props: FormControlFeedbackProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const FormControlFeedback: Component; export default FormControlFeedback;