///
import { FieldError } from "react-hook-form";
import { FormControlComponent, FormControlPropsTotal } from "./types";
import { StyleProp, ViewStyle } from "react-native";
type FormControlContextProps = {
properties: FormControlPropsTotal["props"];
error: FieldError | undefined;
title: string;
};
export declare const FormControlContext: import("react").Context>;
export declare function FormControl(props: FormControlComponent & {
style?: StyleProp;
className?: string;
custom?: true;
children: any;
}): JSX.Element;
export {};