import { RequestContext } from '../../api/common/request-context';
import { ProductVariantPrice } from '../../entity';
import { VendureEntityEvent } from '../vendure-entity-event';
type ProductVariantInputTypes = undefined;
/**
 * @description
 * This event is fired whenever a {@link ProductVariantPrice} is added, updated or deleted.
 *
 * @docsCategory events
 * @docsPage Event Types
 * @since 2.2.0
 */
export declare class ProductVariantPriceEvent extends VendureEntityEvent<ProductVariantPrice[], ProductVariantInputTypes> {
    constructor(ctx: RequestContext, entity: ProductVariantPrice[], type: 'created' | 'updated' | 'deleted', input?: ProductVariantInputTypes);
}
export {};
