If you are getting 2 estimates, it means that you are using 3 knots for the splines. The procedure probably outputs a "SplineKnots" table, which will show the 3 values of the continuous variable at which the knots are placed. For example, see this example:
proc glmselect data=sashelp.cars;
effect CONUTs = spline(Weight / details naturalcubic basis=tpf(noint)
knotmethod=equal(3)); /* <== NOTE: 3 equally spaced knots */
model mpg_city = CONUTs / selection=none; /* fit model by using spline effects */
ods select SplineKnots ParameterEstimates;
quit;
The three spline components are the Intercept, CONUTs_1, and CONUTS_2, The p-values indicate whether each component in the model is a significant predictor of the response variable. For more about the spline components (and how to visualize them), see https://blogs.sas.com/content/iml/2019/10/16/visualize-regression-splines.html