import React from "react"; interface RadioButtonGroupContextType { inline?: boolean; error?: boolean; warning?: boolean; name?: string; onBlur?: (ev: React.FocusEvent) => void; onChange?: (ev: React.ChangeEvent) => void; value?: string; size: "small" | "medium" | "large"; disabled?: boolean; required?: boolean; } declare const RadioButtonGroupProvider: React.Provider, useRadioButtonGroupContext: () => RadioButtonGroupContextType; export { RadioButtonGroupProvider, useRadioButtonGroupContext };