import { FC, ReactNode } from "react"; import { TFormTheme } from "../components/form/type"; export interface ICustomInputs { } interface InputContextType { customInputs?: ICustomInputs[]; theme?: TFormTheme; } export interface IFormProvider { children: ReactNode; customInputs?: ICustomInputs[]; theme?: TFormTheme; } declare const FormProvider: FC; export declare const useFormContext: () => InputContextType; export default FormProvider;