import { ControllerGeneratorOptionsWithSupplier } from '../../comms/controller'; import { Theme } from '../../commons/theme'; interface Request { body: { name?: string; enforceTwoFactorAuthentication?: boolean; theme: Theme | null; }; } type Response = void; declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithSupplier; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };