import * as React from 'react'; declare type Item = { value: string; label: string; }; declare type Props = { items: Item[]; onChange: (event: React.ChangeEvent) => void; value: string; name: string; label: string; row?: boolean; labelPlacement?: 'end' | 'start' | 'top' | 'bottom'; }; declare const MaterialRadio: ({ items, onChange, value, name, label, row, labelPlacement }: Props) => JSX.Element; export default MaterialRadio;