import ICoefficient from "./iCoefficient";
export default class WildcardCoefficient implements ICoefficient {
    isWildcard(): boolean;
    isIn(validHaabCoeffs: number[]): Boolean;
    validate(): boolean;
    toString(): string;
    equal(coefficient: ICoefficient): Boolean;
    match(coefficient: ICoefficient): Boolean;
}
