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<HttpAuthentication, HttpOptions>;
export default authenticator;
