import { BaseValidator } from './base'; import type { TimestampValidatorType, ValidationNames } from '../types/index'; export declare function timestamp(): TimestampValidator; export declare class TimestampValidator extends BaseValidator implements TimestampValidatorType { name: ValidationNames; constructor(); }