import { ForgeInvocationError, ForgeInvocationErrorOptions, InvocationStatusCode } from '@atlassian/forge-graphql-types'; export declare class ForgeInvocationErrorResponseBuilderError extends Error { } export declare class ForgeInvocationErrorResponse { private error; private statusCode; private options; constructor(error: string, statusCode: InvocationStatusCode, options: ForgeInvocationErrorOptions); private validateOptions; private validate; build(): ForgeInvocationError; }