import type { RedactionConfig } from '@reticlehq/core'; export interface ReticleConnectOptions { url?: string; session?: string; projectId?: string; token?: string; allowNonLocalhost?: boolean; allowInProduction?: boolean; overlay?: boolean; captureNetworkBodies?: boolean; sourceMapping?: boolean; captureErrorBodies?: boolean; exposePresenter?: boolean; root?: string; sdkVersion?: string; present?: boolean; pace?: number; narrationDwellMs?: number; border?: 'session' | 'busy'; logMax?: number; recorder?: boolean; annotate?: boolean; endedFadeMs?: number; idleEndMs?: number; redact?: RedactionConfig; }