export interface AuthorizationOptions { logger: any; groups: Array; scopes?: Array; } declare const authorization: ({ logger, groups, scopes, }: AuthorizationOptions) => (req: any, res: any, next: () => void) => void; export default authorization;