/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ /** * Split a command line into tokens, honoring single and double quotes. * A quote only opens a quoted span at a token boundary (when `current` is * empty); a quote char mid-token is kept literally. Shared by the CLI * `chain` command and the MCP `sf_gql_raw` parser. */ export declare function tokenizeCommand(input: string): string[];