import { TableFilterInterface } from "../table-filter-interface";
export declare class TableInputFilter implements TableFilterInterface {
    variable: string;
    constructor(variable: string);
    getColumnName(): string;
    getTemplate(): string;
}
