import { type ReactNode } from "react"; type ContextType = { path: string; }; export declare function ProcedureFormContextProvider({ children, path, }: { children: ReactNode; path: string; }): import("react/jsx-runtime").JSX.Element; export declare function useProcedureFormContext(): ContextType; export {};