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