import React from 'react'; import { type BaseProps } from '../types'; type LoadingSpinnerProps = Pick; export default function LoadingSpinner({ appearance, isDisabled, isSelected, spacing, }: LoadingSpinnerProps): React.JSX.Element; export {};