import { BaseObject } from './baseObject';
export interface Date extends BaseObject {
    year?: number;
    month?: number;
    day?: number;
}
