/** * GitLab CI YAML parser for `chant import`. * * Parses an existing .gitlab-ci.yml file into the core TemplateIR format, * mapping GitLab CI constructs to resources and property types. */ import type { TemplateParser, TemplateIR } from "@intentius/chant/import/parser"; /** * GitLab CI YAML parser implementation. */ export declare class GitLabParser implements TemplateParser { parse(content: string): TemplateIR; } //# sourceMappingURL=parser.d.ts.map