/** * Schema for the YAML frontmatter of an output style markdown file. * * Output styles tweak how Claude phrases its responses. `name` is * optional; Claude Code falls back to the file name. * * @since 0.1.0 */ import * as Schema from 'effect/Schema'; declare const OutputStyleFrontmatter_base: Schema.Class; readonly description: Schema.optional; readonly 'keep-coding-instructions': Schema.optional; readonly 'force-for-plugin': Schema.optional; }>, {}>; /** * The frontmatter schema for an output style markdown file. * * @category Schemas * @since 0.1.0 */ export declare class OutputStyleFrontmatter extends OutputStyleFrontmatter_base { } export type OutputStyleFrontmatterInput = typeof OutputStyleFrontmatter.Type; export {}; //# sourceMappingURL=OutputStyle.d.ts.map