import BaseProp from "./BaseProp"; /** * A Date property. This will validate the value it is connected with and render it down */ export default class DateProp extends BaseProp { /** * * @param {any} node The node being managed * @param {string} name The name of the node */ constructor(node: any, name: string); /** * Checks if the value is a date that's after the specified date. */ minDate?: Date; /** * Checks if the value is a date that's before the specified date. */ maxDate?: Date; /** * The template to render this type */ readonly prop: string; /** * Returns a string array of needed imports */ imports(): string[]; /** * Things like extra classes and enums that need to be at the top level of the module */ headers(): string[]; } //# sourceMappingURL=DateProp.d.ts.map