import type { Product, ProductConfiguration, ProductPriceRange } from '@unchainedshop/core-products'; import type { User } from '@unchainedshop/core-users'; import type { Modules } from '../modules.ts'; export declare function simulateConfigurablePriceRangeService(this: Modules, { product, currencyCode, countryCode, quantity, useNetPrice, vectors, includeInactive, user, }: { product: Product; currencyCode: string; countryCode: string; quantity?: number; useNetPrice?: boolean; vectors?: ProductConfiguration[]; includeInactive?: boolean; user?: User; }): Promise;