import './ProgressSpin.css'; import React from 'react'; import { PropsWithHTMLAttributes } from '../../utils/types/PropsWithHTMLAttributes'; export declare const progressSpinPropSize: readonly ["m", "s", "l", "xl", "2xl"]; export type ProgressSpinPropSize = (typeof progressSpinPropSize)[number]; export declare const progressSpinPropSizeDefault: ProgressSpinPropSize; type Props = { size?: ProgressSpinPropSize; className?: string; progress?: number; value?: number; animation?: boolean; children?: never; }; export type ProgressSpinProps = PropsWithHTMLAttributes; export declare const cnProgressSpin: import("@bem-react/classname").ClassNameFormatter; export declare const ProgressSpin: React.ForwardRefExoticComponent, "css" | keyof Props> & React.RefAttributes>; export {};