/** * - `"guide"`: prose field list ("Fill in each field…") followed by an example skeleton. * - `"inline"`: a single skeleton whose field values are inline placeholders / enum choices. * - `"exampleOnly"`: just a filled example skeleton, nothing else. */ export declare const PromptStyle: { readonly GUIDE: "guide"; readonly INLINE: "inline"; readonly EXAMPLE_ONLY: "exampleOnly"; }; export type PromptStyle = (typeof PromptStyle)[keyof typeof PromptStyle]; /** * Maps the `@promptStyle` attribute string to a {@link PromptStyle}. Null or any * unrecognized value falls back to `"guide"` (matches Java `PromptStyle.from`). */ export declare function promptStyleFrom(s?: string | null): PromptStyle; //# sourceMappingURL=prompt-style.d.ts.map