import { ColorScheme } from '../../mdx-layout-core'; export declare const getInitialColorScheme: () => string; /** Component used for styling the layout of mdx docs. It uses Water.css https://watercss.kognise.dev . It's built on top of CoreLayout and it supports Dark and Light modes. */ export declare const CssLayout: ({ components, onSwitch, ...rest }: { [x: string]: any; components?: {}; onSwitch?: (scheme: ColorScheme) => void; }) => JSX.Element;