import { BaseError } from "@bigmi/core";
//#region src/errors/context.d.ts
type BigmiProviderNotFoundErrorType = BigmiProviderNotFoundError & {
  name: "BigmiProviderNotFoundError";
};
declare class BigmiProviderNotFoundError extends BaseError {
  override name: string;
  constructor();
}
//#endregion
export { BigmiProviderNotFoundError, BigmiProviderNotFoundErrorType };
//# sourceMappingURL=context.d.ts.map