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