/// export declare type SpinnerStyling = 'primary' | 'secondary' | 'negative'; export interface SpinnerProps { /** * Size of the spinner * @default 'standard' */ size?: 'standard' | 'small'; /** * Determines the styling of the spinner * @default 'primary' */ styling?: SpinnerStyling; /** * Adjusts colour to display on top of dark background * @default false */ negative?: boolean; } declare const Spinner: (props: SpinnerProps) => JSX.Element; export default Spinner;