import { Marker } from "../markers"; import { Yaml } from "./tree"; declare module "./tree" { namespace Yaml { const Markers: { readonly OmitColon: "org.openrewrite.yaml.marker.OmitColon"; }; } } /** * Marker indicating that a mapping entry should be printed without a colon. * This is used for flow mappings like { "key", "key2" } where entries lack explicit colons. */ export interface OmitColon extends Marker { readonly kind: typeof Yaml.Markers.OmitColon; } /** * Creates an OmitColon marker. */ export declare function omitColon(): OmitColon; //# sourceMappingURL=markers.d.ts.map