import { type Context } from 'hono'; import { type FrameContext } from '../types.js'; type RequestToContextOptions = { hubApiUrl: string; verify?: boolean; }; type RequestToContextReturnType = Pick, 'initialUrl' | 'previousState' | 'previousIntentData' | 'frameData' | 'status' | 'url' | 'verified'>; export declare function requestToContext(request: Context['req'], { hubApiUrl, verify }: RequestToContextOptions): Promise>; export {}; //# sourceMappingURL=requestToContext.d.ts.map