/** 오버레이 뷰포트 — 스토어를 구독해 SLoadingContainer 를 렌더한다. 직접 배치도 가능. */ export declare function SLoadingViewport(): import("react").JSX.Element; export declare const loading: { /** 로딩 오버레이 표시 (메시지 갱신도 동일 호출) */ show(options?: { message?: string; }): void; /** 로딩 오버레이 숨김 */ hide(): void; };