export declare class WorkflowError extends Error {
    type: string;
    constructor(type: string, msg: string);
}
export declare enum ErrorType {
    INVALID_CREDENTIAL = "InvalidCredentialError",
    INVALID_TOKEN = "InvalidTokenError",
    SERVER_CONFIG = "ServerNotConfiguredException",
    SERVER_CONNECTION = "ServerConnectionException"
}
