/** * Base class for exceptions in this module. */ declare class JetpackError extends Error { constructor(message?: string); } /** * Exception raised for errors in the Jetpack runtime and kubernetes. */ export declare class SystemError extends JetpackError { constructor(message?: string); } /** * Exception raised for errors from application-code that is using the SDK. */ export declare class ApplicationError extends JetpackError { constructor(message?: string); } export {};