import React from 'react'; import { MarginProps } from 'styled-system'; export interface RadioButtonProps extends React.InputHTMLAttributes, MarginProps { id?: string; name: string; disabled?: boolean; } export declare const RadioButton: import("styled-components").StyledComponent>, import("styled-components").DefaultTheme, {}, never>; export default RadioButton;