/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type ReactNode } from 'react'; interface LoadingContainerProps { contentsOpacity: number; children: ReactNode; testId?: string; } export declare const ContentsContainer: FC; export {};