import type { IValidation } from '../types'; export declare class ExclusiveValidation implements IValidation { private min; private max; constructor(min?: number, max?: number); validate(value: any): void; }