/** * Step 1 of self-service account deletion. Emails the signed-in user a one-time * confirmation code. Pass that code to `useConfirmAccountDeletion` to * permanently delete the account. * * Requires the account to have an email on file — accounts without one (e.g. * anonymous or foreign-id users) must be deleted server-side with a service key * via the node SDK. */ declare function useRequestAccountDeletion(): () => Promise<{ success: boolean; }>; export default useRequestAccountDeletion;