import type { HttpMethod } from '../request/fetch.js'; import type { AbsoluteUrl } from '../types/common.js'; import type { OAuthCredentials } from '../types/config.js'; interface GetSignatureHeadersParams { url: AbsoluteUrl; method: HttpMethod; oauthTokens: OAuthCredentials['oauth']; data?: unknown; } export declare function getSignatureHeaders({ url, method, data, oauthTokens }: GetSignatureHeadersParams): any; export {}; //# sourceMappingURL=oauth.d.ts.map