import Attribute from "./attribute";
export declare class AttributeConstraint {
    from: string[];
    to: string[];
    f: (attribute: Attribute) => number;
    constructor(from: string[], to: string[], f: (attribute: Attribute) => number);
}
