import type { AuthProfileStore } from "./auth-profiles.js"; type PiApiKeyCredential = { type: "api_key"; key: string; }; type PiOAuthCredential = { type: "oauth"; access: string; refresh: string; expires: number; }; export type PiCredential = PiApiKeyCredential | PiOAuthCredential; export type PiCredentialMap = Record; export declare function resolvePiCredentialMapFromStore(store: AuthProfileStore): PiCredentialMap; export declare function piCredentialsEqual(a: PiCredential | undefined, b: PiCredential): boolean; export {};