export type { NitroChucker } from './specs/NitroChucker.nitro'; /** Whether on-device inspection is available on this platform. Never throws. */ export declare function isSupported(): boolean; /** Open the on-device inspector UI. No-op when unsupported. */ export declare function show(): void; /** Wipe captured transactions (best-effort). No-op when unsupported. */ export declare function clearLogs(): void; /** Best-effort close of the inspector UI. No-op when unsupported. */ export declare function dismiss(): void; /** Pause/resume capture at runtime. No-op when unsupported. */ export declare function setEnabled(enabled: boolean): void; /** * Cap how many transactions are retained; the oldest are evicted as new ones arrive. * Pass 0 for unlimited. iOS defaults to 200 — see README for why this matters there. * No-op when unsupported. */ export declare function setMaxLogCount(maxCount: number): void; /** * Skip capture for these hosts so their payloads are never retained — the most * effective guard against large media/CDN responses. No-op when unsupported. */ export declare function setIgnoredHosts(hosts: string[]): void; //# sourceMappingURL=index.d.ts.map