declare namespace VKV {
    type Value<T> = Record<string, string | T>;
    export interface Object extends Value<Object> {
    }
    export function parse<T extends Object>(input: string): T;
    export function strigify(root: Object): string;
    export {};
}
export default VKV;
