import * as React from 'react'; import { Theme } from '../../theme'; import { WithStyles } from '../withStyles'; interface RadioGroupProps extends WithStyles { value?: string; label?: string; inline?: boolean; onChange?: (value: string) => void; testId?: string; } export declare const RadioGroup: React.SFC; declare const styles: (theme: Theme) => Record<"inline" | "label" | "group", import("@material-ui/core/styles/withStyles").CSSProperties>; declare const _default: (React.ComponentClass & import("@material-ui/core/styles/withStyles").StyledComponentProps, any> & { Option: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; }) | (React.FunctionComponent & import("@material-ui/core/styles/withStyles").StyledComponentProps> & { Option: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; }); export default _default;