import React, { ReactNode, HTMLAttributes } from 'react';
export declare type TFormFeedback = HTMLAttributes & {
className?: string;
valid?: boolean;
children?: ReactNode;
};
export declare const FormFeedback: React.ForwardRefExoticComponent & {
className?: string | undefined;
valid?: boolean | undefined;
children?: ReactNode;
} & React.RefAttributes>;
export default FormFeedback;