import React from "react"; import { StyleRulesCallback, WithStyles } from "../Styles"; import { BlurProps } from "../Blur"; declare const styles: StyleRulesCallback; export interface DimmerProps { active: boolean; blur: boolean; BlurProps?: BlurProps; className?: string; contentRenderer?: () => React.ReactNode; onClickOutside?: React.MouseEventHandler; variant?: "default" | "dark" | "light"; } declare type DimmerPropsWithStyles = DimmerProps & WithStyles; declare const _default: React.ComponentType & Partial> & Partial, never>>, "active" | "blur" | "className" | "variant" | "BlurProps" | "contentRenderer" | "onClickOutside"> & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;