import type { GlobalTheme } from '../global'; declare const getRadioTheme: (theme: GlobalTheme) => { sizes: { circle: number; innerCircle: number; }; borderWidths: { circle: number; }; space: { circleLeftMargin: number; groupTopMarginSmall: number; groupTopMarginMedium: number; }; colors: { circle: string; checked: string; intents: { light: string; dark: string; }; }; }; export default getRadioTheme;