export declare type TestIntInputUnion = TestIntInput; /** A simple object containing a number; for testing only */ export interface TestIntInput { _: 'testInt'; /** Number */ value?: number; }