import { ErrorResponse } from "@webiny/handler-graphql/responses"; interface NotAuthorizedResponseArgsType { message: string; code: string | null; data: any | null; } declare class NotAuthorizedResponse extends ErrorResponse { constructor({ message, code, data }?: Partial); } export default NotAuthorizedResponse;