import { type CSSProperties } from 'react'; export type KinoLogoLoaderProps = { /** Accessible status label. */ label?: string; /** Rendered icon diameter in pixels. */ size?: number; /** Seconds per full logo rotation. */ speed?: number; /** Pause the CSS animations while preserving the loaded mark. */ paused?: boolean; /** Outer Kino mark fill color. */ markColor?: string; /** Inactive center dot color below the signal dot. */ centerColor?: string; /** Top color for the glowing signal dot. */ signalStart?: string; /** Bottom color for the glowing signal dot. */ signalEnd?: string; /** Outer glow color for the signal dot. */ glowColor?: string; className?: string; style?: CSSProperties; }; export declare const KinoLogoLoader: ({ label, size, speed, paused, markColor, centerColor, signalStart, signalEnd, glowColor, className, style, }: KinoLogoLoaderProps) => import("react/jsx-runtime").JSX.Element;