import type { TModuleEnableStatusProperties } from "../type/module-enable-status-properties.type";
/**
 * Mapper for command options processing.
 * Provides utility functions for transforming command-line flags to module configurations.
 */
export declare const CommandOptionsMapper: {
    /**
     * Converts command-line flags to module enable status properties.
     * @param properties - Record of flag names to boolean values
     * @returns Object with module keys mapped to their enabled status
     */
    fromFlagToModule(properties: Record<string, boolean>): TModuleEnableStatusProperties;
};
