According to the docs you can read a signal's current value by calling its getter function.
Example:
class SomeComponent { age = signal<number>(20); void foo() { const currentAge = age(); ... } }