import { z } from "zod"; export type { Provider } from "../../config/generated/index.js"; export { ProviderEnum } from "../../config/generated/index.js"; export declare const TechniqueEnum: z.ZodEnum<["zero-shot", "few-shot", "chain-of-thought", "self-consistency", "in-context-learning", "generate-knowledge", "prompt-chaining", "tree-of-thoughts", "meta-prompting", "rag", "react", "art"]>; export declare const StyleEnum: z.ZodEnum<["markdown", "xml"]>; export type Technique = z.infer; export type Style = z.infer; //# sourceMappingURL=prompt-sections.types.d.ts.map