import { inspect } from 'util'; import * as z from 'zod/v4'; export type ConcurrentlyErrors = z.infer; export declare const concurrentlyErrorsSchema: z.ZodArray; index: z.ZodNumber; exitCode: z.ZodNumber; }, z.core.$strip>>; /** * Creates an error that returns its plain `message` rather than a full stack * trace when `util.inspect`ed. * * This can be useful for terser handling and logging of known error scenarios * that have descriptive messages. * * https://nodejs.org/api/util.html#custom-inspection-functions-on-objects */ export declare const createTerseError: (message?: string) => Error & { [inspect.custom]: () => string | undefined; }; export declare const handleCliError: (err: unknown) => void; export declare const isErrorWithCode: (err: unknown, code: T) => err is Record & { code: T; };