import type { JsonValue } from "../state/json.js"; export type ParsedResourceManagerArgs = { kind: "list"; } | { kind: "get"; resourceManager: string; key: string; } | { kind: "apply"; resourceManager: string; key: string; spec: JsonValue; } | { kind: "reconcile"; resourceManager: string; key: string; } | { kind: "delete"; resourceManager: string; key: string; }; export declare function parseResourceManagerArgs(args: string): ParsedResourceManagerArgs;