import { CreatePromotionInput, UpdatePromotionInput } from '../../common/generated-types'; import { BaseDataService } from './base-data.service'; export declare class PromotionDataService { private baseDataService; constructor(baseDataService: BaseDataService); getPromotions(take?: number, skip?: number): import("../query-result").QueryResult>; getPromotion(id: string): import("../query-result").QueryResult>; getPromotionActionsAndConditions(): import("../query-result").QueryResult>; createPromotion(input: CreatePromotionInput): import("rxjs").Observable; updatePromotion(input: UpdatePromotionInput): import("rxjs").Observable; deletePromotion(id: string): import("rxjs").Observable; }