import { UIPlugin, UIDocumentState, UISchema } from '../../index.ts'; export declare const useUICapability: () => { provides: Readonly | null; isLoading: boolean; ready: Promise; }; export declare const useUIPlugin: () => { plugin: UIPlugin | null; isLoading: boolean; ready: Promise; }; /** * Get UI state for a document */ export declare const useUIState: (documentId: string) => UIDocumentState | null; /** * Get UI schema */ export declare const useUISchema: () => UISchema | null;