/** * SDK release version used to resolve versioned runtime assets such as FFmpeg bundles. */ export declare const SDK_VERSION = "1.0.0"; /** * Stable Pixi display object name reserved for the generated background sprite. */ export declare const BACKGROUND_SPRITE_NAME = "CANVAS_BACKGROUND_SPRITE"; /** * Stable Pixi container name reserved for the main compositing stage. */ export declare const STAGE_CONTAINER_NAME = "STAGE_CONTAINER"; /** * Base CDN URL used to fetch Rendley-hosted runtime assets. Can be overridden via `VITE_RENDLEY_CDN`. */ export declare const RENDLEY_CDN: any; /** * Version-pinned CDN base used for loading the FFmpeg worker/core assets bundled with this SDK release. */ export declare const FFMPEG_CDN: string; /** * Base API URL for SDK-facing Rendley endpoints such as license validation. */ export declare const RENDLEY_API_BASE_URL = "https://api.rendleysdk.com/sdk/v1"; /** * Local storage key used by the SDK to cache the current license payload. */ export declare const LICENSE_LOCAL_STORAGE_KEY = "license"; /** * Builds the license lookup endpoint for a license or sublicense identifier. * * @param licenseName License name or token segment expected by the Rendley API. * @param isSublicense When `true`, appends the API flag required for sublicense validation. * @returns Absolute SDK API URL for the requested license resource. */ export declare const getLicenseEndpoint: (licenseName: string, isSublicense?: boolean) => string;