import * as factory from '../../../../../factory';
/**
 * ポイント特典を作成する
 */
declare function createPointAward(params: {
    acceptedOffer: factory.assetTransaction.reserve.IAcceptedTicketOfferWithoutDetail;
    offer: factory.product.ITicketOffer;
    reservation: {
        id: string;
    };
    project: {
        id: string;
    };
}): factory.action.transfer.moneyTransfer.IPointAward | undefined;
export { createPointAward };
