export = RouteHelpers; declare function RouteHelpers(): void; import { Request, Response, Next } from "restify"; declare class RouteHelpers { config: { validators: {}; getUser: typeof noGetUser; parameterMaps: {}; }; getUser(cb: (req: Request, cb: (err: any, user: any) => void) => void): void; notAuthenticated(cb: (req: Request, res: Response, next: Next) => void): void; notAuthorized(cb: (req: Request, res: Response, next: Next) => void): void; parameterMaps(cb: any): void; } declare function noGetUser(req: any, cb: any): void; //# sourceMappingURL=route-helpers.d.ts.map