Hello Srinivas,
you can use this.access = "readOnly" to disable a button from clicking. You can still see the button which is not interactive.
To hide or make a button invisible, use
this.presence = "hidden" //hides the button from form
or
this.presence = "invisible" // button will be inivisible. difference is it still occupies the form space.
Regards,
kc