import { HTMLAttributes, FC } from 'react'; declare type BaseElement = HTMLDivElement; declare type BaseProps = HTMLAttributes; declare type SpinnerType = 'primary' | 'dashed'; export interface SpinnerProps extends BaseProps { /** * `class` to be passed to the component. */ readonly className?: BaseProps['className']; /** * Used to choose spinner type. */ readonly type?: SpinnerType; /** * Changes the label attatched to the spinner. */ readonly label?: string; } export declare const Spinner: FC; export {};