import { type RadioProps, type SpiritRadioProps } from '../../types'; export interface RadioStyles { classProps: { root: string; label: string; input: string; text: string; helperText: string; }; props: RadioProps; } export declare function useRadioStyleProps(props: SpiritRadioProps): RadioStyles;