There are two ways you can do it depending on the sort of relation the FilterComponent may have with other pages in your App.
If FilterComponent is a direct child of these pages, then you can create an @Output property in your FilterComponent and then call a function in the pages by binding to it using event binding syntax. I've specified the @Output approach in this answer of mine.
If there's no relation between them as such, you can create a SharedService with a private BehaviorSubject in exposed as public Observable You can follow the approach that I've shared in this answer of mine.