import { AppConfig, SystemSettings } from './types'; /** * Checks if the API Telemetry feature is enabled * * @param systemSettings - System settings * @returns True if the API Telemetry feature is enabled, false otherwise */ export declare function isApiTelemetryEnabled(systemSettings?: SystemSettings): boolean; /** * Prepares the API Telemetry headers * * @param appConfig - App config * @param isFusionAuth - Whether the application is using Fusion authentication * @returns The API Telemetry headers */ export declare function prepareApiTelemetryHeaders(packageName: string, appConfig?: AppConfig, isFusionAuth?: boolean): Record;