import type { Static, TSchema, TUnknown } from '@sinclair/typebox'; export type TypeOpts = { verbose?: boolean; default?: boolean; convert?: boolean; clean?: boolean; }; export default class TypeValidator { static type(type: T, body: unknown, opts?: TypeOpts): Static; }