import { default as React } from 'react'; type SpinnerProps = { size?: 'standard' | 'large'; /** Optional prop to add a test id to the Spinner for QA testing */ qaTestId?: string; }; declare const Spinner: ({ size, qaTestId, }: SpinnerProps) => React.JSX.Element; export default Spinner;