import { SidebarTab } from "../../components/sidebar/tabs/index.js";
import * as react_jsx_runtime30 from "react/jsx-runtime";
import * as react0 from "react";
import { ComponentProps, ReactNode } from "react";

//#region src/layouts/docs/client.d.ts
declare const LayoutContext: react0.Context<{
  isNavTransparent: boolean;
} | null>;
declare function LayoutContextProvider({
  navTransparentMode,
  children
}: {
  navTransparentMode?: 'always' | 'top' | 'none';
  children: ReactNode;
}): react_jsx_runtime30.JSX.Element;
declare function LayoutHeader(props: ComponentProps<'header'>): react_jsx_runtime30.JSX.Element;
declare function LayoutBody({
  className,
  style,
  children,
  ...props
}: ComponentProps<'div'>): react_jsx_runtime30.JSX.Element;
declare function LayoutTabs({
  options,
  ...props
}: ComponentProps<'div'> & {
  options: SidebarTab[];
}): react_jsx_runtime30.JSX.Element;
//#endregion
export { LayoutBody, LayoutContext, LayoutContextProvider, LayoutHeader, LayoutTabs };
//# sourceMappingURL=client.d.ts.map