/**
 * SDK initialization configuration — provided by the consumer.
 * Mirrors Android TrackerConfiguration.
 */
export interface TrackerConfiguration {
    tenant: string;
    apiUrl: string;
    apiKey: string;
    timeout?: number;
    queueProcessInterval?: number;
    /** Enable debug logging to console. Defaults to `false`. */
    debug?: boolean;
}
