import React from 'react'; import type { SelectOptions } from '../../types/'; export declare type TRadioButtonsProps = { value: string | number; options?: SelectOptions; name: string; onChange: (currentValue: string, event?: React.SyntheticEvent) => void; ariaLabel?: string; ariaLabelledBy?: string; defaultValue?: string | number; disabled?: boolean; borderRadius?: number; borderSize?: number; width?: string; height?: string; }; export declare const RadioButtons: ({ value, name, options, disabled, onChange, borderRadius, borderSize, ariaLabel, ariaLabelledBy, width, height, ...rest }: TRadioButtonsProps) => import("@emotion/react/jsx-runtime").JSX.Element;