import Validator from "./validator"; export default class Create implements Validator { private validator; constructor(validator: (value: any) => value is Type); validate(value: any): value is Type; }