import React from 'react';
export type SidebarPageClassKey = 'root';
/**
* Props for SidebarPage
*
* @public
*/
export type SidebarPageProps = {
children?: React.ReactNode;
};
export declare function SidebarPage(props: SidebarPageProps): React.JSX.Element;
/**
* This hook provides a react ref to the main content.
* Allows to set an element as the main content and focus on that component.
*
* *Note: If `contentRef` is not set `focusContent` is noop. `Content` component sets this ref automatically*
*
* @public
* @example
* Focus current content
* ```tsx
* const { focusContent} = useContent();
* ...
*
* ```
* @example
* Set the reference to an Html element
* ```
* const { contentRef } = useContent();
* ...
* Main Content
* ```
*/
export declare function useContent(): {
focusContent: () => void;
contentRef: React.MutableRefObject | undefined;
};