import React from 'react';
import { WithGuiTheme } from '../../assets/theme';
import { GuiRadioGroupProps } from './GuiRadioGroup.type';
declare type WithStyled = GuiRadioGroupProps & WithGuiTheme;
declare const styled: (component: React.FC<WithStyled>) => import("@emotion/styled").StyledComponent<GuiRadioGroupProps & WithGuiTheme & {
    children?: React.ReactNode;
} & {
    theme?: import("@emotion/react").Theme;
}, {}, {}>;
export default styled;
