import { ViewProps } from "@tarojs/components/types/View"; import { ReactNode } from "react"; import { FormFeedbackAlign, FormFeedbackStatus } from "./form.shared"; export interface FormFeedbackProps extends ViewProps { align?: FormFeedbackAlign; status?: FormFeedbackStatus; children?: ReactNode; } declare function FormFeedback(props: FormFeedbackProps): JSX.Element; declare namespace FormFeedback { var displayName: string; } export default FormFeedback;