import { type ComponentPropsWithRef, type CSSProperties, type ElementType } from 'react'; import { type CssLength } from '../../../utils/css'; type CssOnlyFireOwnProps = { as?: E; active?: boolean; paused?: boolean; respectReducedMotion?: boolean; glitterImage?: CSSProperties['backgroundImage']; durationMs?: number; brightness?: number; blur?: CssLength; contrast?: number; className?: string; style?: CSSProperties; ref?: ComponentPropsWithRef['ref']; }; type CssOnlyFireProps = CssOnlyFireOwnProps & Omit, keyof CssOnlyFireOwnProps>; declare const CssOnlyFire: ({ active, as, blur, brightness, className, contrast, durationMs, glitterImage, paused, ref, respectReducedMotion, style, ...props }: CssOnlyFireProps) => import("react/jsx-runtime").JSX.Element; export { CssOnlyFire }; export type { CssOnlyFireProps };