import type { ViewProps } from "@tarojs/components/types/View"; import { type ReactNode } from "react"; import type { FormControlAlign, FormController } from "./form.shared"; interface FormControlProps extends Omit, FormController { align?: FormControlAlign; children?: ReactNode | ((controller: FormController) => ReactNode); } declare function FormControl(props: FormControlProps): JSX.Element; export default FormControl;