/** * Class represents a Name Value Pair */ export declare class NVP { /** * The key */ key: string | number; /** * The value */ value: string | number; }