import { Date } from './date';
import { Value } from './value';
export interface DateValue extends Value {
    value?: Date;
}
