Kalman filter (and stochastic filters in general) do not provide you directly with estimators of the hidden process: they provide you with the conditional law of the hidden process, given observations (the so called filter law) (*).
If you want an estimator of the hidden process, you then have to do it yourself (posterior maximum, posterior expected value). For the Kalman filter, the filter law you compute is gaussian, and you just update its mean value and covariance matrix. You can take the mean value as an estimator of the signal value, and the covariance matrix as an error estimate.
Make sure to make the difference between the filter law (the output of a filter method) and an estimator of the hidden signal.
(*) actually for the Kalman filter, it is the linear conditional law, but if you do the hypothesis of everything being linear, and the noises being gaussian white noise, it is the actual conditional law. Particle filters, to the contrary, approximate the true filter law by discrete measures.