import Base, { MaybeRaw } from "../../../Base"; import { Asset } from "../../../interfaces/cosmo/asset"; /** * @class Production * @extends Base * * @remarks * **Under development, breaking changes possible** * * Represents a Production resource in Cosmo, providing methods to interact with the Production API. */ export declare class CosmoProduction extends Base { protected getEndpoint(endpoint: string): string; /** * Create a new Production in the specified Organization and Space. * @remarks * ** Under development, breaking changes possible** * @param orgName Name of the Organization * @param spaceName Name of the Space * @param productionName Name of the Production to create * @returns The created Production */ createProduction(orgName: string, spaceName: string, productionName: string, raw?: { raw: R; }): Promise>; }