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<T extends TSchema = TUnknown>(type: T, body: unknown, opts?: TypeOpts): Static<T>;
}
