/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type HTMLProps, type ReactNode } from 'react'; type ContainerProps = HTMLProps & { testId?: string; }; export declare const Container: React.ForwardRefExoticComponent & React.RefAttributes>; type SpinnerBackdropProps = { testId?: string; children: ReactNode; }; export declare const SpinnerBackdrop: FC; export declare const SpinnerContainer: React.ForwardRefExoticComponent> & React.RefAttributes>; export {};