declare const RESERVED_ADMIN_GATEWAY_METHOD_SCOPE: "operator.admin"; export declare function resolveReservedGatewayMethodScope(method: string): typeof RESERVED_ADMIN_GATEWAY_METHOD_SCOPE | undefined; export declare function normalizePluginGatewayMethodScope(method: string, scope: TScope | undefined): { scope: TScope | typeof RESERVED_ADMIN_GATEWAY_METHOD_SCOPE | undefined; coercedToReservedAdmin: boolean; }; export {};