import { CustomError } from "./custom"
import { Address } from "./custom"

export type AddressResponse = {
    addresses: Address[]
    error: CustomError
}