import { HttpClient } from "./http-client"; import type { OmnisendOptions } from "./types"; export declare class OmnisendCore { /** * The http client instance */ protected httpClient: HttpClient; /** * The Omnisend API Key */ private apiKey; /** * Debug flag */ private debug; constructor(options: OmnisendOptions); /** * Logger for debug mode */ private log; }