/** * Automation Module Index * * Exports all automation-related functionality */ export * from "./types"; export type { MatchResult, MatchSuggestions } from "./pattern-matcher"; export type { LabelSuggestion, LabelAssignmentResult } from "./label-assigner"; export { PatternMatcher } from "./pattern-matcher"; export { LabelAssigner } from "./label-assigner"; export { PatternLearner } from "./pattern-learner"; export { PatternStore } from "./pattern-store"; export * from "./json-reader"; export * from "./ticket-creator"; export * from "./bugs-sync"; export * from "./bugs-watcher"; //# sourceMappingURL=index.d.ts.map