import { t as ComponentProps } from "./components-U6HOf5GS.mjs"; //#region src/core/components/single-line-comment.d.ts type SingleLineCommentVariant = "double-slash" | "triple-slash" | "slash-star" | "slash-star-star" | "markdown" | "yaml" | "hcl"; interface SingleLineCommentProps extends ComponentProps { /** * The variant of the single line comment. * * @defaultValue "double-slash" */ variant?: SingleLineCommentVariant; } /** * A single line comment block. The children are rendered as a prose element, which means that they * are broken into multiple lines */ declare function SingleLineComment(props: SingleLineCommentProps): import("@alloy-js/core").Children; //#endregion export { SingleLineCommentProps as n, SingleLineCommentVariant as r, SingleLineComment as t }; //# sourceMappingURL=single-line-comment--RdZCsIn.d.mts.map