import { type HTMLAttributes, type Ref } from 'react'; import { type CssLength, type CssTime } from '../../../utils/css'; type ReorderingLoaderProps = Omit, 'children' | 'color'> & { label?: string; size?: CssLength; color?: string; backgroundColor?: string; duration?: CssTime; paused?: boolean; ref?: Ref; }; declare const ReorderingLoader: ({ label, size, color, backgroundColor, duration, paused, className, style, ref, ...props }: ReorderingLoaderProps) => import("react/jsx-runtime").JSX.Element; export { ReorderingLoader }; export type { ReorderingLoaderProps };