export type ApiCredentialOptions = { type: "bearer"; token: string; } | { type: "token"; token: string; } | { type: "basic"; username: string; password: string; } | { type: "querystring"; name: string; value: string; } | { type: "custom"; authorization: string; }; export declare class ApiCredential { #private; constructor(optionsOrToken?: ApiCredentialOptions | string); get headers(): Record; get queryParams(): Record; } //# sourceMappingURL=credential.d.ts.map