import { PriceSheet } from "../operationsInterfaces"; import { ConsumptionManagementClient } from "../consumptionManagementClient"; import { PriceSheetGetOptionalParams, PriceSheetGetResponse, PriceSheetGetByBillingPeriodOptionalParams, PriceSheetGetByBillingPeriodResponse } from "../models"; /** Class containing PriceSheet operations. */ export declare class PriceSheetImpl implements PriceSheet { private readonly client; /** * Initialize a new instance of the class PriceSheet class. * @param client Reference to the service client */ constructor(client: ConsumptionManagementClient); /** * Gets the price sheet for a subscription. Price sheet is available via this API only for May 1, 2014 * or later. * @param options The options parameters. */ get(options?: PriceSheetGetOptionalParams): Promise; /** * Get the price sheet for a scope by subscriptionId and billing period. Price sheet is available via * this API only for May 1, 2014 or later. * @param billingPeriodName Billing Period Name. * @param options The options parameters. */ getByBillingPeriod(billingPeriodName: string, options?: PriceSheetGetByBillingPeriodOptionalParams): Promise; } //# sourceMappingURL=priceSheet.d.ts.map