export declare module Defaults {
    module Int {
        const Value = 0;
    }
    module String {
        const Value = "";
    }
    module Guid {
        const Value = "00000000-0000-0000-0000-000000000000";
    }
    module Object {
        const Value: {};
    }
}
