import * as React from 'react';
import { BaseProps } from './types';
export interface WiredRadioGroupProps extends BaseProps {
    /**
     * Name of the selected radio button.
     */
    selected?: string;
    /**
     *  Event fired when user changes selection.
     */
    onSelect?(): void;
    /**
     * Should be one or more WiredRadio components.
     */
    children?: React.ReactNode;
}
export declare const WiredRadioGroup: ({ children, selected, onSelect, className, style, }: WiredRadioGroupProps) => JSX.Element;
