import type { HttpResponseInit, InvocationContext } from "@azure/functions"; import type { Headers } from "undici"; export declare function parseTeamFromQuery(query: URLSearchParams, context: InvocationContext): string | HttpResponseInit; export declare function parseHashFromParams(params: Record, context: InvocationContext): {}; export declare function parseHashesFromBody(jsonBody: unknown, context: InvocationContext): any[] | HttpResponseInit; export declare function parseEventsFromBody(jsonBody: unknown): any[]; export declare function parseTokenFromHeaders(headers: Headers, context: InvocationContext, TOKEN?: string | undefined): true | HttpResponseInit;