/**
 * A trace that can be found in a NFA instance
 */
export declare type INFATrace<N, T> = {
    final: N;
    path: {
        fromNode: N;
        transition: T;
    }[];
};
//# sourceMappingURL=INFATrace.d.ts.map