import type { SDKExecutionError } from '../../lib'; import type { MapInterpreterError } from './map-interpreter.errors'; import type { ProfileParameterError } from './profile-parameter-validator.errors'; export declare type PerformError = ProfileParameterError | MapInterpreterError | SDKExecutionError;