import type { Nullable } from '@zajno/common/types'; import { CommonModel } from './CommonModel.js'; export declare class DateViewModel extends CommonModel { private _min; private _max; withBounds(min?: Nullable, max?: Nullable): this; get min(): Nullable; get max(): Nullable; }