import { RadioItemType, AlignType, RadioCategoryType, RadioWidthType } from './RadioGroup'; import { RadioSizeUnion, DefaultRadioSizeUnion } from './types'; export declare const getRadioGroupStyleByProps: ({ radio_item_type, align, spacing, size, }: { radio_item_type: RadioItemType; align?: AlignType | undefined; spacing: Number; size?: "xsmall" | "small" | "medium" | "large" | undefined; }) => import("@emotion/react").SerializedStyles; export declare const default_radio_size_css: Record>; export declare const getRadioWidthBySize: (size: RadioSizeUnion) => number; interface RadioStyleProps extends RadioCategoryType { fill?: boolean; width?: RadioWidthType; disabled?: boolean; checked?: boolean; focused?: boolean; } export declare const getRadioStyleByProps: ({ radioItemType, fill, width, size, disabled, checked, focused, }: RadioStyleProps) => import("@emotion/react").SerializedStyles; export {};