import { type ZodRawShape } from "zod"; import { type AccessProvider } from "@younndai/lyt-vault"; export interface ToolResult { [x: string]: unknown; content: Array<{ type: "text"; text: string; }>; } export interface OpRow { name: string; title: string; description: string; inputSchema: ZodRawShape; handler: (args: Record) => Promise; access: "read" | "write"; handlerGated: boolean; defaultProfile: boolean; } export declare function __setCaptureAccessProvider(provider: AccessProvider | undefined): void; export declare function buildOpRegistry(): OpRow[]; //# sourceMappingURL=registry.d.ts.map