import Controller from '@curveball/controller'; import { Context } from '@curveball/core'; /** * WellKnownChangePassword implements support for well-known URIs as * defined in RFC 8615. */ declare class WellKnownChangePassword extends Controller { /** * get responds to requests with a 301 Moved Permanently status code * redirecting the user to the /changepassword route via the Location * header. * * @param ctx Context object representing encapsulating the HTTP request. */ get(ctx: Context): Promise; } declare const _default: WellKnownChangePassword; export default _default;