import type { ConfigValue } from '@quonfig/node'; import { ConfigValueType } from '@quonfig/node'; /** * Maps a ConfigValue to the DTO format expected by the API. * Used by both create and set-default commands. * @param configValue - The config value to convert * @param valueType - The type of the config value * @returns The DTO representation of the config value */ export declare function mapConfigValueToDto(configValue: ConfigValue, valueType: ConfigValueType): Record; /** * Converts a ConfigValueType enum to its string representation for the API. * @param valueType - The config value type enum * @returns The string representation of the value type */ export declare function mapValueTypeToString(valueType: ConfigValueType): string;