/**
 * Simplified PIT API for TypeScript
 *
 * Provides the same simple interface as the Python version:
 * - prompts() function for loading and rendering templates
 * - model.complete() for executing with auto-tracking
 * - Native structured output support
 * - Automatic chain detection
 */
export { prompts } from './prompts';
export { model, ModelResponse } from './model';
export { VersioningEngine as Repository } from '../versioning/operations';
export type { StructuredOutput, ModelOptions, PromptVariables, MultimodalContent, TextPart, ImagePart, PromptContent } from './types';
//# sourceMappingURL=index.d.ts.map