import type { BaseResult } from "../../banking/common/baseresult";
import { BaseServiceParameters } from "./baseService";
type PromotionServiceParameters = BaseServiceParameters;
type TwitterSpotlightPostIdsResult = BaseResult & {
    postIds: string[];
};
type PromotionIncrementResult = BaseResult & {
    message: string;
};
export type { TwitterSpotlightPostIdsResult, PromotionIncrementResult };
export { PromotionServiceParameters };
