import { IGqlContext } from "../context"; export declare const mustBeAuthenticated: (context: IGqlContext) => void; export declare const mustHaveRole: (context: IGqlContext, ...roles: string[]) => void; export declare function MustHaveRoles(...roles: string[]): MethodDecorator;