import type { Node } from "./builder.js"; /** * Builder-element for a blockquote * @param nodes - Content of this element * @returns A markdown node * @category Builder * @example * ```ts * import { define, quote } from "@ogs-gmbh/markdown"; * * const markdown = define( * quote( * "Two things are infinite: the universe and human stupidity; and I'm not sure about the universe" * ) * ); * * console.assert( * markdown.toString() * ); * ``` * * @see https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#quoting-text * @since 1.0.0 * @author Simon Kovtyk */ declare function quote(nodes: Array): Node; export { quote }; //# sourceMappingURL=quote.d.ts.map