import { PropsWithChildren } from 'react'; interface DimmerProps { active?: boolean; className?: string; } declare const Dimmer: { ({ active, className, children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; Dimmable: import("styled-components").StyledComponent<"div", any, {}, never>; }; export default Dimmer;