import { type CSSProperties } from 'react'; export interface SLoadingContainerProps { /** 오버레이 표시 여부 (Stencil의 show()/hide() 명령형 API → 제어 prop으로 대체) */ open?: boolean; /** 스피너 하단 메시지 */ message?: string; /** z-index. 기본값(1200)은 토스트(1100)·모달 호스트(1000) 위 — 전체 화면을 막는 최상단 블로킹 오버레이 */ zIndex?: number; className?: string; style?: CSSProperties; } /** * SLoadingContainer — sd-loading-container 포팅. * 전체 화면 딤 오버레이 + inverse 스피너. React에서는 `open` 제어 prop 사용. * body 로 portal 해 조상의 스태킹 컨텍스트에 갇히지 않고 항상 최상단에 뜨게 한다. */ export declare const SLoadingContainer: import("react").ForwardRefExoticComponent>;