import { PriceSheetGetOptionalParams, PriceSheetGetResponse, PriceSheetGetByBillingPeriodOptionalParams, PriceSheetGetByBillingPeriodResponse } from "../models"; /** Interface representing a PriceSheet. */ export interface PriceSheet { /** * 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