import { type CSSProperties } from 'react'; export type SpacetimeLoaderProps = { /** Accessible status label. */ label?: string; /** Loader host width. */ width?: number | string; /** Loader host height. Defaults to a page-level viewport loader. */ height?: number | string; /** Full loop duration in seconds. */ duration?: number; /** Seconds between turbulence seed jumps. */ flickerDuration?: number; /** Background behind the spacetime cone. */ background?: string; /** SVG stroke color. */ stroke?: string; /** SVG stroke width in viewBox units. */ strokeWidth?: number; /** Film grain overlay opacity. */ grainOpacity?: number; /** Stop GSAP and render a static frame. */ paused?: boolean; className?: string; style?: CSSProperties; }; export declare const SpacetimeLoader: ({ label, width, height, duration, flickerDuration, background, stroke, strokeWidth, grainOpacity, paused, className, style, }: SpacetimeLoaderProps) => import("react/jsx-runtime").JSX.Element;