import * as react_jsx_runtime from 'react/jsx-runtime'; import { U as UnicornSceneProps } from './types-Bj2y1_cd.js'; /** * React component for rendering Unicorn Studio WebGL animations. * * @remarks * This component wraps Unicorn Studio's WebGL animation system for use in React applications. * It handles script loading, scene initialization, placeholder display, and error states. * * The component requires either a `projectId` (to load from Unicorn Studio's servers) * or a `jsonFilePath` (to load from a local JSON file). * * @param props - The component props * * @example * Basic usage with project ID: * ```tsx * * ``` * * @example * With placeholder and callbacks: * ```tsx * console.log("Scene loaded!")} * onError={(err) => console.error(err)} * /> * ``` * * @example * Using local JSON file: * ```tsx * * ``` */ declare function UnicornScene({ projectId, jsonFilePath, sdkUrl, width, height, scale, dpi, fps, altText, ariaLabel, className, lazyLoad, production, paused, placeholder, placeholderClassName, showPlaceholderOnError, showPlaceholderWhileLoading, onLoad, onError, sceneRef, }: UnicornSceneProps): react_jsx_runtime.JSX.Element; export { UnicornScene, UnicornSceneProps, UnicornScene as default };