interface AuditOptions { types?: string; files?: string; format?: 'text' | 'json'; } /** * Audit `window.JSSDK..(` calls against a types declaration file. * * Why native: bash + grep + awk + <<< heredoc is fast to read but not * portable — Windows devs and agents that can't drop into bash can't run it. * This command gives every agent the same audit in one command. */ export declare function auditJssdk(opts: AuditOptions): void; export {};