import type { Authenticator, Authentication, AuthOptions } from 'integreat'; export type HttpAuthentication = Authentication; export interface HttpOptions extends AuthOptions { type?: 'Basic'; key?: string; secret?: string; } declare const authenticator: Authenticator; export default authenticator;