import React from 'react';
import { DimmerProps } from './type';
declare const Dimmer: {
    ({ as, className, active, inverted, content, children, ...props }: DimmerProps): JSX.Element;
    displayName: string;
    Dimmable: {
        ({ as, className, dimmed, content, children, ...props }: import("./type").DimmerDimmableProps): React.ReactElement<any, string | React.JSXElementConstructor<any>>;
        displayName: string;
    };
};
export default Dimmer;
