import * as React from 'react'; import { formService } from '../apps'; type FormElementLookupsContextValue = { formElementLookups: formService.FormElementLookupResult[]; isLoading: boolean; loadError: Error | null; onTryAgain: (abortSignal?: AbortSignal) => void; }; export declare function FormElementLookupsContextProvider({ children, }: { children: React.ReactNode; }): import("react/jsx-runtime").JSX.Element; export default function useFormElementLookups(): FormElementLookupsContextValue; export {};