import React from 'react'; import { FlexItemProps } from '../helpers/styled'; import { LabelProps } from '../Label/Label'; import { RadioButtonProps } from '../RadioButton/RadioButton'; export interface RadioButtonFieldProps extends RadioButtonProps, FlexItemProps { label: React.ReactNode; name: string; labelProps?: Omit; id?: string; } export declare const RadioButtonField: import("styled-components").StyledComponent>, import("styled-components").DefaultTheme, {}, never>; export default RadioButtonField;