import { BaseError, ChainId } from "@bigmi/core";

//#region src/errors/config.d.ts
type ChainNotConfiguredErrorType = ChainNotConfiguredError & {
  name: "ChainNotConfiguredError";
};
declare class ChainNotConfiguredError extends BaseError {
  override name: string;
  constructor(chainId?: ChainId);
}
//#endregion
export { ChainNotConfiguredError, ChainNotConfiguredErrorType };
//# sourceMappingURL=config.d.ts.map