/** * Wraps every function on a host callback object so an integrator's throw stays * the integrator's problem. * * Applied where callbacks enter the SDK rather than at each call site: some of * those sites can't defend themselves usefully — `onClose` runs inside a * `setState` updater, `onOpen` runs before the sheet is open — and a call site * added later would otherwise be unguarded by default. */ export declare function guardHostCallbacks(callbacks: T): T; //# sourceMappingURL=guardHostCallbacks.d.ts.map