/**
 * The API request context. Highly sensitive since it handles Supabase API tokens.
 */
export declare class RequestContext {
    /**
     * The Supabase access token associated with this request. May be null if the
     * request is unauthenticated. This value can be trusted since even if someone hacks the
     * code, they will not be able to fake a valid value for this token since it is
     * authenticated by Supabase when performing requests with Supabase.
     */
    readonly accessToken: string | null;
    constructor(
    /**
     * The Supabase access token associated with this request. May be null if the
     * request is unauthenticated. This value can be trusted since even if someone hacks the
     * code, they will not be able to fake a valid value for this token since it is
     * authenticated by Supabase when performing requests with Supabase.
     */
    accessToken: string | null);
    toString(): string;
}
//# sourceMappingURL=RequestContext.d.ts.map