import React from 'react';
import { Radio as MantineRadio, RadioProps as MantineRadioProps } from '@mantine/core';
export type RadioProps = MantineRadioProps;
export interface CompoundedComponent extends React.ForwardRefExoticComponent<RadioProps> {
    Group: typeof MantineRadio.Group;
}
declare const Radio: CompoundedComponent;
export { Radio };
