import { FC } from 'react'; import { FilterTab, SortBy, TypeFilter } from './types'; interface NotificationFiltersProps { filterTab: FilterTab; typeFilter: TypeFilter; appFilter: string; sortBy: SortBy; appNames: [string, number][]; onFilterTabChange: (tab: FilterTab) => void; onTypeFilterChange: (type: TypeFilter) => void; onAppFilterChange: (app: string) => void; onSortByChange: (sort: SortBy) => void; } export declare const NotificationFilters: FC; export {}; //# sourceMappingURL=NotificationFilters.d.ts.map