import { APIResource } from "../core/resource.mjs"; import { APIPromise } from "../core/api-promise.mjs"; import { RequestOptions } from "../internal/request-options.mjs"; /** * @deprecated Use `pricing` instead. */ export declare class Oscu extends APIResource { /** * Get the public Prepaid Compute Units (or OSCU for One Shot Compute Units) price * details * * @deprecated Use `pricing` instead. */ retrievePrices(options?: RequestOptions): APIPromise; } export interface OscuRetrievePricesResponse { prices: Array; } export declare namespace OscuRetrievePricesResponse { interface Price { creativeUnits?: number; currency?: string; expires?: number; unitAmount?: number; } } export declare namespace Oscu { export { type OscuRetrievePricesResponse as OscuRetrievePricesResponse }; } //# sourceMappingURL=oscu.d.mts.map