/** * This file was auto-generated by Fern from our API Definition. */ /** * The citation style to be used in summary. * Can be one of: * * `numeric` - Citations formatted as simple numerals: \[1\], \[2\] ... * * `none` - Citations removed from text. * * `html` - Citation formatted as a URL like `text_pattern`. * * `markdown` - Formatted as `[text_pattern](url_pattern)`. */ export declare type CitationParametersStyle = "none" | "numeric" | "html" | "markdown"; export declare const CitationParametersStyle: { readonly None: "none"; readonly Numeric: "numeric"; readonly Html: "html"; readonly Markdown: "markdown"; };