/** * **Publish a Place** ยท `BETA` * * Publish a new place or update an existing place with a new version. Provide a RBXL or RBXLX file in the data-binary. * * **Scopes:** `universe-places:write` * * @param universeId The identifier of the experience in which you want to publish your place to. You can [copy your experience's Universe ID](/cloud/guides/usage-place-publishing.md#publishing-a-place) on **Creator Dashboard**. * @param placeId The identifier of your place. See [Publishing places with API keys](/cloud/guides/usage-place-publishing.md) on obtaining a Place ID. * @param versionType Can only be either: - `Saved`: the place file should be saved, but not published. - `Published`: the place file should be saved and published. */ export declare const postUniverseIdPlacesPlaceIdVersions: import("../..").EndpointGeneric<{ universeId: number; placeId: number; versionType?: string | null | undefined; }, void, undefined>;