/// <reference types="react" />
import type { StudioLayoutSidebarLeftConfig } from './types/StudioSidebarLeftSchema';
import type { CommonStudioLayoutConfigProps, CommonStudioLayoutProps, StudioLayoutWithChildrenConfigProps } from './types';
export interface StudioLayoutSidebarLeftConfigProps extends StudioLayoutWithChildrenConfigProps, CommonStudioLayoutConfigProps<StudioSidebarLeftProps, StudioLayoutSidebarLeftConfig> {
}
export interface StudioSidebarLeftProps extends Omit<CommonStudioLayoutProps<StudioLayoutSidebarLeftConfig>, 'htmlAttrs'> {
    width?: number | string;
}
export declare const StudioSidebarLeft: import("react").NamedExoticComponent<StudioSidebarLeftProps>;
export default StudioSidebarLeft;
