type AmbientString = string;
type AmbientObjOne = {
    a: string;
    b: number;
};
type AmbientObjTwo = {
    a: string;
    b: number;
};
type AmbientObjThree = {
    a: AmbientRemote;
};
