sig
  val create :
    ?name:string ->
    ?activebackground:Tk.color ->
    ?activeforeground:Tk.color ->
    ?anchor:Tk.anchor ->
    ?background:Tk.color ->
    ?bitmap:Tk.bitmap ->
    ?borderwidth:int ->
    ?command:(unit -> unit) ->
    ?cursor:Tk.cursor ->
    ?disabledforeground:Tk.color ->
    ?font:string ->
    ?foreground:Tk.color ->
    ?height:int ->
    ?highlightbackground:Tk.color ->
    ?highlightcolor:Tk.color ->
    ?highlightthickness:int ->
    ?image:[< Tk.image ] ->
    ?indicatoron:bool ->
    ?justify:Tk.justification ->
    ?padx:int ->
    ?pady:int ->
    ?relief:Tk.relief ->
    ?selectcolor:Tk.color ->
    ?selectimage:[< Tk.image ] ->
    ?state:Tk.state ->
    ?takefocus:bool ->
    ?text:string ->
    ?textvariable:Textvariable.textVariable ->
    ?underline:int ->
    ?value:string ->
    ?variable:Textvariable.textVariable ->
    ?width:int ->
    ?wraplength:int -> 'Widget.widget -> Widget.radiobutton Widget.widget
  val configure :
    ?activebackground:Tk.color ->
    ?activeforeground:Tk.color ->
    ?anchor:Tk.anchor ->
    ?background:Tk.color ->
    ?bitmap:Tk.bitmap ->
    ?borderwidth:int ->
    ?command:(unit -> unit) ->
    ?cursor:Tk.cursor ->
    ?disabledforeground:Tk.color ->
    ?font:string ->
    ?foreground:Tk.color ->
    ?height:int ->
    ?highlightbackground:Tk.color ->
    ?highlightcolor:Tk.color ->
    ?highlightthickness:int ->
    ?image:[< Tk.image ] ->
    ?indicatoron:bool ->
    ?justify:Tk.justification ->
    ?padx:int ->
    ?pady:int ->
    ?relief:Tk.relief ->
    ?selectcolor:Tk.color ->
    ?selectimage:[< Tk.image ] ->
    ?state:Tk.state ->
    ?takefocus:bool ->
    ?text:string ->
    ?textvariable:Textvariable.textVariable ->
    ?underline:int ->
    ?value:string ->
    ?variable:Textvariable.textVariable ->
    ?width:int -> ?wraplength:int -> Widget.radiobutton Widget.widget -> unit
  val configure_get : Widget.radiobutton Widget.widget -> string
  val deselect : Widget.radiobutton Widget.widget -> unit
  val flash : Widget.radiobutton Widget.widget -> unit
  val invoke : Widget.radiobutton Widget.widget -> unit
  val select : Widget.radiobutton Widget.widget -> unit
end