import { EventEmitter } from "@angular/core"; import { IdService } from "../../shared/services/id.service"; export declare class DatatableGlobalSearcherComponent { private idService; 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; }; id: string; onGlobalSearchFocusOut: EventEmitter<{}>; onGlobalSearchTermUpdate: EventEmitter<{}>; globalSearchTerm: string; constructor(idService: IdService); $_GlobalSearch_focusOut(obj: any): void; $_GlobalSearch_inputUpdate(obj: any): void; $_GlobalSearch_reset(): void; }