export declare class Filter {
    private _filter;
    private _valid;
    build(): string;
    to(address: string, eq?: boolean): this;
    from(address: string, eq?: boolean): this;
    method(methodId: string, eq?: boolean): this;
    get and(): this;
    get or(): this;
}
