import { Scope } from "./scope.ts"; export type StateCommand = "tree" | "list" | "get"; /** * Run an `alchemy state` subcommand against the configured state store * and exit. Invoked by `alchemy.ts` when the user's program is launched * via `alchemy state ...` — the user's resources are never created. */ export declare function runStateCommand(scope: Scope, command: StateCommand, arg?: string): Promise; //# sourceMappingURL=state-cli.d.ts.map