/** @packageDocumentation
 * @module Utilities
 */
/** Parses a string case-insensitively returning true for "ON", false for "OFF" undefined for "TOGGLE" or undefined, and the input string for anything else
 * Used by various tools which take such arguments.
 * @beta
 */
export declare function parseToggle(arg: string | undefined): string | boolean | undefined;
//# sourceMappingURL=parseToggle.d.ts.map