import type { TSchema } from '@sinclair/typebox';
export interface SchemaAnalysis {
    hasTransform: boolean;
    hasDefault: boolean;
    references: Map<string, TSchema>;
}
export declare const analyzeSchema: (schema: TSchema) => SchemaAnalysis;
