/** * F5 CLI - Strict Implementation Commands * Enforces strict implementation protocol * * @module @f5/cli/commands/strict * @version 1.0.0 */ import { Command } from 'commander'; export declare function createStrictCommand(): Command; /** * Register strict command with the main program */ export declare function StrictCommand(program: Command): void;