/// <reference types="styled-components" />
import React from 'react';
export interface OneSidebarLayoutProps {
    /**
     * The main content area.
     */
    content: React.ReactNode;
    /**
     * The sidebar area.
     */
    sidebar: React.ReactNode;
    /**
     * The theme props is passed automatically to the component via styled components.
     *
     * @default "null"
     */
    theme: any;
}
/**
 * Layout with one sidebar.
 */
export declare const OneSidebarLayout: React.ForwardRefExoticComponent<Pick<OneSidebarLayoutProps, "content" | "sidebar"> & {
    theme?: any;
}>;
