declare class ErrorWithCode extends Error { code: string; constructor(message: string, code: string); } export { ErrorWithCode };