/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type ReactNode } from 'react'; type SpinnerContainerProps = { testId?: string; children: ReactNode; }; export declare const SpinnerContainer: FC; export {};