import type { OAuthLoginCallbacks } from "./oauth/types"; /** * Fire Pass login flow. * * Fire Pass is a Fireworks subscription product whose dedicated `fpk_…` API * keys are scoped to the `accounts/fireworks/routers/kimi-k2p6-turbo` router * (Kimi K2.6 Turbo). The key does NOT authorize `/v1/models`, so validation * pings the chat completions endpoint with the router id directly. * See https://docs.fireworks.ai/firepass. */ export declare const loginFirepass: (options: import("./oauth").OAuthController) => Promise; export declare const firepassProvider: { readonly id: "firepass"; readonly name: "Fire Pass (Fireworks Kimi K2.6 Turbo subscription)"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };