/** * Special toolset value that enables all toolsets. */ export declare const ALL_TOOLSETS = "ALL"; /** * Available toolsets that can be enabled. */ export declare const TOOLSETS: readonly ["CARTRIDGES", "DIAGNOSTICS", "MRT", "PWAV3", "SCAPI", "STOREFRONTNEXT", "STOREFRONTNEXT_DEPRECATED"]; /** * Deprecated toolsets. These can only be enabled by explicitly naming them via * `--toolsets`; they are never auto-activated by project detection and are NOT * included when `--toolsets ALL` is used. * * `STOREFRONTNEXT_DEPRECATED` holds the legacy `sfnext_*` MCP tools. They are * superseded by the `storefront-next` and `storefront-next-figma` agent-skills * plugins and are not compatible with the Storefront Next 1.0 GA release. They * will be removed in a future release. */ export declare const DEPRECATED_TOOLSETS: readonly ["STOREFRONTNEXT_DEPRECATED"]; /** * Valid toolset names including the special "ALL" value. */ export declare const VALID_TOOLSET_NAMES: readonly ["ALL", "CARTRIDGES", "DIAGNOSTICS", "MRT", "PWAV3", "SCAPI", "STOREFRONTNEXT", "STOREFRONTNEXT_DEPRECATED"]; /** * Type representing a valid toolset name. */ export type Toolset = (typeof TOOLSETS)[number];