import ts from 'typescript';
import { TypeCompilerOptions } from './types';
/**
 * Create a transformer for generating Zod schemas
 */
export declare function createZodTransformer(program: ts.Program, options: TypeCompilerOptions): any;
/**
 * Creates TypeScript transformer factories for the TypeCompiler plugin
 */
export declare function createTypeCompilerPlugin(options?: TypeCompilerOptions): any[];
