import type { MinimalClerkClient } from "jazz-tools"; import type { Snippet } from "svelte"; interface Props { clerk: MinimalClerkClient; children?: Snippet; } /** * Internal component that registers the Clerk auth listener. * * This component exists because `useClerkAuth` requires access to the Jazz context, * which is only available inside `JazzSvelteProvider`'s children. By placing the * hook call in this child component, we ensure the context is properly initialized. */ declare const RegisterClerkAuth: import("svelte").Component; type RegisterClerkAuth = ReturnType; export default RegisterClerkAuth; //# sourceMappingURL=RegisterClerkAuth.svelte.d.ts.map