/**
 * This interface defines the information that is stored in the download data set API return object
 */
export interface ISearchMatchLocation {
    /**
     * The line number that the match was found in
     */
    line: number;
    /**
     * The column number that the match was found in
     */
    column: number;
    /**
     * The contents of that line where the search term was found
     */
    contents: string;
    /**
     * The length of the match
     */
    length?: number;
}
//# sourceMappingURL=ISearchMatchLocation.d.ts.map