/* tslint:disable */ export type Enum = | { "tag" : "V1" , "fields" : { "Foo" : boolean , } , } | { "tag" : "V2" , "fields" : { "Bar" : number , "Baz" : number , } , } | { "tag" : "V3" , "fields" : { "Quux" : string , } , } ; export function greet(arg0: string): void;