import * as React from 'react';

/**
 * Spinner — from @kibrisyazilim/design-system@0.1.0.
 */
export interface SpinnerProps {
  size?: "sm" | "md" | "lg";
  /** Announced to screen readers. Pass `null` when the spinner sits inside something that already announces the busy state (e */
  label?: string;
  className?: string;
  id?: string;
  style?: CSSProperties;
  children?: React.ReactNode;
}

export declare const Spinner: React.ComponentType<SpinnerProps>;
