import * as React from 'react'; export interface IRadioBlockGroupProps { className?: string; style?: React.CSSProperties; value?: any; onChange?: (value: any) => void; disabled?: boolean; } declare function RadioBlockGroup(props: React.PropsWithChildren): JSX.Element; export interface IRadioBlockProps { className?: string; style?: React.CSSProperties; disabled?: boolean; value: any; } declare function RadioBlock(props: React.PropsWithChildren): JSX.Element; declare namespace RadioBlock { var Group: typeof RadioBlockGroup; } export { RadioBlock };