import { APIResource } from "../core/resource.mjs"; import { APIPromise } from "../core/api-promise.mjs"; import { RequestOptions } from "../internal/request-options.mjs"; export declare class Me extends APIResource { /** * Returns the project, team, and API key metadata bound to the current Bearer * token. Used by CLIs and SDKs to confirm which project they will operate on. */ retrieve(options?: RequestOptions): APIPromise; } export interface MeRetrieveResponse { apiKey: MeRetrieveResponse.APIKey; isTestMode: boolean; project: MeRetrieveResponse.Project; team: MeRetrieveResponse.Team; } export declare namespace MeRetrieveResponse { interface APIKey { id: string; } interface Project { id: string; isSubAccount: boolean; name: string | null; } interface Team { id: string; name: string | null; } } export declare namespace Me { export { type MeRetrieveResponse as MeRetrieveResponse }; } //# sourceMappingURL=me.d.mts.map