import React from 'react'; import { TypographyProps } from '@material-ui/core/Typography'; import { Styles } from './SwitchBox.style'; export interface SwitchBoxProps extends Styles { title: string; disabled?: boolean; checked?: boolean; children?: TypographyProps['children']; onChange: (event: React.ChangeEvent, checked: boolean) => void; } declare const _default: React.ComponentType, "disabled" | "title" | "children" | "onChange" | "checked"> & import("@material-ui/core/styles/withStyles").StyledComponentProps<"root" | "caption" | "switch" | "boxTitle">>; export default _default; //# sourceMappingURL=SwitchBox.d.ts.map