import { Address } from "viem" import { OrangeKitSafeFactory } from "./safe-factory" import { Safe } from "./safe" interface OrangeKitContracts { safeFactory: OrangeKitSafeFactory getSafeContract: (predictedAddress: Address) => Safe } export { OrangeKitContracts, OrangeKitSafeFactory }