import { ValidationType } from './types'; export interface IntrospectedType { examples: any[]; items?: IntrospectedType[]; properties?: Record; type: string; name?: string; description?: string; optional: boolean; nullable: boolean; } export declare let introspectType: (type: ValidationType) => IntrospectedType; //# sourceMappingURL=introspect.d.ts.map