export declare type DateInputUnion = DateInput; /** Represents a date according to the Gregorian calendar */ export interface DateInput { _: 'date'; /** Day of the month, 1-31 */ day?: number; /** Month, 1-12 */ month?: number; /** Year, 1-9999 */ year?: number; }