export interface Arguments {
    [argumentName: string]: Value | undefined;
    allArguments: string[];
    fullNameArguments: string[];
    aliasesNameArguments: string[];
    indexArguments: string[];
    unrecognizedArguments: string[];
}
export declare type Value = number | string | boolean | (number | string | boolean)[];
