import LongCount from "../lc/long-count";
import { IPart } from "../i-part";
import { CommentWrapper } from "../comment-wrapper";
export default class LongCountWildcard extends CommentWrapper implements IPart {
    private readonly lc;
    constructor(lc: LongCount);
    equal(other: IPart): boolean;
    run(): LongCount[];
}
