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