import { type HTMLAttributes } from 'react'; export type AbyssFireLoaderProps = Omit, 'children' | 'role' | 'aria-label'> & { label?: string; size?: number | string; duration?: number; glowDuration?: number; paused?: boolean; animated?: boolean; glow?: boolean; baseColor?: string; tipColor?: string; strokeColor?: string; emberColor?: string; coreColor?: string; glowColor?: string; glowPeakColor?: string; }; export declare const AbyssFireLoader: ({ label, size, duration, glowDuration, paused, animated, glow, baseColor, tipColor, strokeColor, emberColor, coreColor, glowColor, glowPeakColor, className, style, ...props }: AbyssFireLoaderProps) => import("react/jsx-runtime").JSX.Element;