import { RequestSigner } from './signers/types.js'; export default class Signature { private static signer; static setSigner(signer: RequestSigner): void; static resetSigner(): void; static signRequest(service: string, method: string, url: string, date: Date, nonce: string, credentials: { secretKey: string; accessKey: string; }, headers?: Record, body?: Record): string; static signRequestAsync(service: string, method: string, url: string, date: Date, nonce: string, credentials: { secretKey: string; accessKey: string; }, headers?: Record, body?: Record): Promise; } //# sourceMappingURL=Signature.d.ts.map