import { SsmValue, ISsmParameter } from "./types";
import { IDictionary } from "common-types";
export declare function coerceValueToString(value: SsmValue): string;
export declare function findPriorDescription(Name: string): string;
export declare function getLatestVersion(modules: IDictionary<IDictionary<ISsmParameter>>, verbose?: boolean): IDictionary<any>;
export declare function getSpecificVersion(modules: IDictionary<IDictionary<ISsmParameter>>, version: number, verbose?: boolean): IDictionary<any>;
export declare function convertDictionaryToArray(params: IDictionary<ISsmParameter>): any[];
export declare function addModuleName(module: string, params: IDictionary<ISsmParameter>, verbose?: boolean): IDictionary<any>;
