import type { RequestHandler } from '@sveltejs/kit'; import type { AuthDeps } from '../deps.js'; /** * Authenticated password change. Re-auth (current password) is required, the * new password must pass the configured strength policy, and on success every * *other* session is invalidated while the current device stays signed in. */ export declare function createChangePasswordHandler(deps: AuthDeps): { POST: RequestHandler; };