import Text from './Text'; export declare class NumberField extends Text { component: { form: string; index: string; detail: string; }; constructor(name: string, databaseField?: string); /** * Set the min value for this number field. * Will be the min on the number in * forms * */ min(min: number): this; /** * Set the max value for this number field. * Will be the max on the number in * forms * */ max(max: number): this; } export declare const number: (name: string, databaseField?: string | undefined) => NumberField; export default NumberField;