import React from "react"; import type { HydratedData } from "./workflow-storage-context/types"; export interface ShortLinkContextProps { removeWorkflowSession: () => void; retrieveWorkflowSession: () => HydratedData; storeWorkflowSession: (data: HydratedData) => void; } declare const ShortLinkContext: React.Context; declare const useShortLinkContext: () => ShortLinkContextProps; export { ShortLinkContext, useShortLinkContext }; //# sourceMappingURL=short-link-context.d.ts.map