import './Loader.css'; import React from 'react'; import { PropsWithHTMLAttributes } from '../../utils/types/PropsWithHTMLAttributes'; export declare const loaderPropSize: readonly ["m", "s", "xs"]; export type LoaderPropSize = (typeof loaderPropSize)[number]; export declare const loaderPropSizeDefault: LoaderPropSize; type Props = { size?: LoaderPropSize; children?: never; }; export type LoaderProps = PropsWithHTMLAttributes; export declare const cnLoader: import("@bem-react/classname").ClassNameFormatter; export declare const Loader: React.ForwardRefExoticComponent, "css" | keyof Props> & React.RefAttributes>; export {};