import { Voucher } from "./Voucher"; export declare class Service { private _discountedAmount; private _discountedPrice; _serviceName: string; private _voucher; constructor(voucherData: any, serviceSlug: string, voucher: Voucher); getServiceData(): { discountedAmount: number; discountedPrice: number; }; getServiceName(): string; }