/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type ReactNode } from 'react'; export declare const CSS_VAR_CONTENTS_OPACITY = "--contents-opacity"; type ContainerProps = { testId?: string; children: ReactNode; }; type LoadingContainerProps = ContainerProps & { contentsOpacity: number; }; export declare const Container: FC; export declare const ContentsContainer: FC; export declare const SpinnerContainer: FC; export {};