import { MatchResult } from "@atomist/automation-client"; /** * Part of a file we can work around */ export interface BoundedElement { /** * Value of whole element */ value: string; /** * Offset within the file */ offset: number; /** * Save point to insert after this element */ insertAfter: number; } export declare function toBoundedElement(m: MatchResult): BoundedElement;