/** @jsxImportSource preact */ /** * @license * Copyright 2026 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ import type { JSX } from "preact"; import type { WebCommandNode } from "../../commandTree"; /** * A group's own page: what it is, and what is under it. * * A group has no action — there is nothing to run and no form to fill — but it * is still a command with a description, and the rail is 266px wide and spends * that on names. Here every line reads at the width it was written for: the * group's own, and one per child, which is what the rail gave up to keep its * names legible. */ export declare function GroupView({ node, onSelect, }: { node: WebCommandNode; onSelect: (node: WebCommandNode) => void; }): JSX.Element;