import { BaseConfiguration, Header } from "./types.js"; export interface Authenticator { getAuthorization(method: string, contentType: string, date: string, headers: Header[], path: string): Promise; } export interface V1HmacConfiguration extends BaseConfiguration { apiKeyId: string; secretApiKey: string; } export type Configuration = V1HmacConfiguration;