/// export interface FormContextProps { subscribe(cb: () => void): void; collect(name: string | undefined, value: any): any; } declare const FormContext: import("react").Context; export default FormContext;