import { CoreValidator } from 'suretype'; import { Type } from 'typebox'; export type IsTypeboxSchema = TSchema extends { static: unknown; params: unknown; } ? true : false; export declare function isTypeboxSchema(schema: any): schema is Type.TSchema; export type IsSuretypeSchema = TSchema extends { required: () => object; nullable?: never; } ? true : false; export declare function isSuretypeSchema(schema: any): schema is CoreValidator;