import { ControllerGeneratorOptionsWithoutClientOrSupplier } from '../../comms/controller'; import { UserEnvironmentSettings } from '../../models/user-environment-settings'; import { Environment } from '../../models/environment'; interface Request { params: { hashId: string; }; } interface Response { environment: Environment; environmentRights: string[]; userEnvironmentSettings: UserEnvironmentSettings; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithoutClientOrSupplier; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };