import { FC } from 'react'; /** * @figmaNode wXrXt5uKNNzV2DnQCgyYZH#21335-39606 (Design-System · "Loading spinner") * * Centered loading spinner in the primary accent (`gama-500` — teal/jade), matching the DS spinner * used in buttons/inline. Already conformant: primary colour + 16/24/32 sizes. */ interface StyledLoadingProps { /** @figmaProp none — visibility toggle */ isLoading: boolean; /** @figmaProp none — behavioral */ className?: string; /** @figmaProp Size = small→16 | medium→24 | large→32 (spinner px) */ size?: 'small' | 'medium' | 'large'; } export declare const StyledLoading: FC; export {};