import { ZodType } from "zod";
interface PromptOptions {
    includeObjective?: boolean;
    includeInstruction?: boolean;
    includeOutput?: boolean;
    includeExample?: boolean;
}
export declare function generatePromptFromSchema<T>(schema: ZodType<T>, options?: PromptOptions): string;
export {};
