export type TwinReplayErrorCode = 'twin/unsupported-body' | 'twin/recording-not-found' | 'twin/parse-error' | 'twin/io-error'; export declare class TwinNoMatchError extends Error { readonly code: "twin/no-match"; readonly hash: string; readonly method: string; readonly url: string; constructor(args: { hash: string; method: string; url: string; }); } export declare class TwinReplayError extends Error { readonly code: TwinReplayErrorCode; constructor(code: TwinReplayErrorCode, message: string); } //# sourceMappingURL=errors.d.ts.map