export declare class UsageError extends Error { readonly exitCode: number; constructor(message: string, exitCode?: number); } export declare class FindParseError extends Error { } export declare class CommandTimeoutError extends Error { readonly command: string; readonly seconds: number; constructor(command: string, seconds: number); } /** * A hard cap refused output the producer had already made. * * The cap is applied to a result that exists: at an op door the * backend has already moved those bytes, and the door reports that * through the caller's `OpReport` before the cap runs, so this error * carries no accounting of its own. * Mirrors Python's mirage.commands.errors.LimitExceededError. */ export declare class LimitExceededError extends Error { constructor(message: string); } //# sourceMappingURL=errors.d.ts.map