/*! Copyright 2023-2024 the gnablib contributors MPL-1.1 */
import { IMatchDetail } from "./IMatchDetail.js";
import type { WindowStr } from "../WindowStr.js";
export interface IMatchResult {
    get fail(): boolean;
    get remain(): WindowStr | undefined;
    get result(): IMatchDetail | undefined;
}
