import * as React from 'react';
import type { HTMLAttributesWithRootRef } from '../../types';
export interface RadioGroupProps extends HTMLAttributesWithRootRef<HTMLDivElement> {
    /**
     * Режим расположения элементов.
     */
    mode?: 'vertical' | 'horizontal';
}
/**
 * @see https://vkui.io/components/radio-group
 */
export declare const RadioGroup: ({ mode, ...restProps }: RadioGroupProps) => React.ReactNode;
//# sourceMappingURL=RadioGroup.d.ts.map