import { EventEmitter } from "@angular/core"; import { Column } from "../Column"; import { IdService } from "../../shared/services/id.service"; export declare class DatatableAdvancedSearcherComponent { private idService; id: string; columnIndex: number; column: Column; locale: { advancedSearchPlaceholder: string; columnFilterLabel: string; columnFilterCheckedText: string; expandableRowLabel: string; globalSearchPlaceholder: string; sortLabel: string; sortUpLabel: string; sortDownLabel: string; paginationPreviousLabel: string; paginationNextLabel: string; paginationFirstLabel: string; paginationLastLabel: string; paginationDisplayLabel: string; downloadDataAsJSONLabel: string; downloadDataAsCSVLabel: string; copyDataLabel: string; copiedSuccessfulMessage: string; }; onAdvancedSearchObjectUpdate: EventEmitter<{}>; advancedSearchTerm: string; _uid: any; constructor(idService: IdService); idGen(): string; $_AdvancedSearch_inputUpdate(value: any): void; }