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