import type { EditorValidationResult } from '../interfaces/editorValidationResult.interface.js'; import type { EditorValidator } from '../interfaces/editorValidator.interface.js'; interface IntegerValidatorOptions { editorArgs: any; errorMessage?: string; minValue?: string | number; maxValue?: string | number; operatorConditionalType?: 'inclusive' | 'exclusive'; required?: boolean; validator?: EditorValidator; } export declare function integerValidator(inputValue: any, options: IntegerValidatorOptions): EditorValidationResult; export {}; //# sourceMappingURL=integerValidator.d.ts.map