import type { BashExpression } from "../../../bash/BashExpression";
/**
 * creates arguments string:
 *
 * --key=value
 *
 * - undefined or null values will get removed completly
 * - true will just be "--key"
 * @param args args record
 * @returns
 */
export declare const createArgsString: (...args: keyValuesArg[]) => string;
export type keyValuesArg = Record<string, string | number | true | false | undefined | BashExpression>;