import type { Config, UserAddress } from '../../../types/index.js'; import type { User } from '../../../users/authentication/types/user.types.js'; export type DeleteUserAddressProps = { id: UserAddress['id']; userId: User['id']; }; export type DeleteUserAddress = (props: DeleteUserAddressProps, config?: Config) => Promise;