/** App collection transport (08-ui ยง3). */ import { type AppDocument, type AppId } from "../../core/index.js"; import type { AppListRow } from "../../core/apps/index.js"; import { type PollOptions } from "./use-resource.js"; export declare function useApps(options?: PollOptions): { apps: AppListRow[]; error: Error | undefined; isLoading: boolean; refresh(): Promise; create(prompt: string): Promise; remove(id: AppId): Promise; fork(id: AppId): Promise; exportApp(id: AppId): Promise; importApp(bytes: Uint8Array): Promise; };