import { LinkedApiError } from '@linkedapi/node'; import { TExitCode } from './exit-codes'; interface TCliError { exitCode: TExitCode; error: string; message: string; workflowId?: string; hint?: string; } export declare function mapLinkedApiErrorToCliError(error: LinkedApiError): TCliError; export declare function writeErrorToStderr(cliError: TCliError): void; export {}; //# sourceMappingURL=error-handler.d.ts.map