import { ValidatorType } from './symbols'; export interface ValidatorOptions { id: string; type: ValidatorType; } export declare function Validator(options: ValidatorOptions): (target: unknown) => void;