import type { Node } from "./builder"; /** * Builder-element for a container * @param type - Type of this element * @param value - Content of this element * @param title - Title of this element * @returns A markdown node * @category Builder * @example * ```ts * import { define, container } from "@ogs-gmbh/markdown"; * * const markdown = define( * container("important", "I like this lib", "Important!") * ); * * console.assert( * markdown.toString() * ); * ``` * * @see https://vitepress.dev/guide/markdown#custom-containers * @since 1.0.0 * @author Simon Kovtyk */ declare function container(type: string, value: Node | string, title?: string): Node; export { container }; //# sourceMappingURL=container.d.ts.map