export declare class FilterSpec {
    private attribute;
    private value;
    constructor(attribute: string, value: string);
    getAttribute(): string;
    getValue(): string;
}
