import { CSSProperties } from 'react'; import { ResponsiveValue } from 'styled-system'; import { InputWrapperProps } from "../InputWrapper"; declare type CSS = CSSProperties; declare type RadioGroupProps = { id?: string; name: string; options: { label?: string; value: string | number; }[]; space: ResponsiveValue; flexDirection?: ResponsiveValue; disabled?: boolean; } & InputWrapperProps; export declare const RadioGroup: ({ error, options, space, flexDirection, id: initialId, label, status, statusMessage, disabled, ...rest }: RadioGroupProps) => JSX.Element; export {};