export interface RadioClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the container element. */ container: string; /** Class name applied to the radio element. */ radio: string; /** Class name applied to the icon element. */ icon: string; /** Class name applied to the action element. */ action: string; /** Class name applied to the input element. */ input: string; /** Class name applied to the label element. */ label: string; /** State class applied to the root, action slots if `checked`. */ checked: string; /** State class applied to the root, action slots if `disabled`. */ disabled: string; /** Class name applied to the root element if the switch has visible focus */ focusVisible: string; /** Class name applied to the root element if `size="small"`. */ sizeSmall: string; /** Class name applied to the root element if `size="medium"`. */ sizeMedium: string; /** Class name applied to the root element if `size="large"`. */ sizeLarge: string; } export declare function getRadioUtilityClass(slot: string): string; declare const radioClasses: RadioClasses; export default radioClasses;