/** * Script-tag auto-init + classic
* * Programmatic `VeilProof.init(...)` callers are unaffected: this only fires * when a `data-site-key` attribute is actually present, and `init()`'s * existing `initialized` guard prevents a double-init if both are used. */ import type { VeilProofConfig, TokenResult } from './types.js'; interface AutoInitHost { init(config: VeilProofConfig): void; getToken(callback: (result: TokenResult) => void): void; } export declare function runAutoInit(host: AutoInitHost): void; export {}; //# sourceMappingURL=autoinit.d.ts.map