import { AutoEncoder } from '@simonbackx/simple-encoding'; export declare class UitpasPriceCheckRequest extends AutoEncoder { basePrice: number; /** * The reduced price in the non-official flow is an estimate, the response will have the effective price for this UiTPAS number * The reduced price can thus only be null when doing a static check (using uitpasEventUrl and without UiTPAS number) (e.g. when configuring the webshop) */ reducedPrice: number | null; uitpasEventUrl: string | null; uitpasNumbers: string[] | null; } export declare class UitpasPriceCheckResponse extends AutoEncoder { prices: number[]; } //# sourceMappingURL=UitpasPriceCheckRequest.d.ts.map