import { type TSchema } from '@sinclair/typebox';
/**
 * Function to cast schemas with unknown Kind to known using `schema.type` or `schema[Hint]`
 */
export declare function castSchema<T extends TSchema>(schema: T): TSchema | null;
