import type { LiveComponent, LiveElement, PropsWithChildren } from '@use-gpu/live'; export declare const SuspenseContext: import("@use-gpu/live").LiveContext; export declare const useSuspenseContext: () => boolean; export declare const useNoSuspenseContext: () => void; type SuspenseProps = PropsWithChildren<{ fallback?: LiveElement; }>; export declare const Suspense: LiveComponent; export {};