import BaseProp from "./BaseProp"; /** * A Number node. This will validate the value it is connected with and render it down */ export default class IntegerProp 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 given number is greater than or equal to given number. */ min?: number; /** * Checks if the given number is less than or equal to given number. */ max?: number; /** * Checks if the value is a positive number. */ isPositive?: boolean; /** * IsNegative */ isNegative?: boolean; /** * Checks if the value is a number that's divisible by another. */ isDivisibleBy?: number; /** * 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=NumberProp.d.ts.map