import React from 'react'; import { BaseSkeletonProps } from '../Skeleton'; interface BaseProps extends React.HTMLAttributes { label: string | React.ReactNode; value: string; name?: string; enabled?: boolean; touched?: boolean; error?: string; disabled?: boolean; display?: 'normal' | 'card'; a11yLabel?: string; } interface SkeletonProps extends BaseSkeletonProps, BaseProps { skeleton?: boolean; } export type Props = BaseProps | SkeletonProps; declare const Radio: (props: Props) => JSX.Element; export default Radio;