/// <reference types="react" />
import type { StudioLayoutSidebarBottomConfig } from './types/StudioSidebarBottomSchema';
import type { CommonStudioLayoutConfigProps, CommonStudioLayoutProps, StudioLayoutWithChildrenConfigProps } from './types';
export interface StudioLayoutSidebarBottomConfigProps extends StudioLayoutWithChildrenConfigProps, CommonStudioLayoutConfigProps<StudioSidebarBottomProps, StudioLayoutSidebarBottomConfig> {
}
export interface StudioSidebarBottomProps extends CommonStudioLayoutProps<StudioLayoutSidebarBottomConfig> {
    height?: number | string;
}
export declare const StudioSidebarBottom: import("react").NamedExoticComponent<StudioSidebarBottomProps>;
export default StudioSidebarBottom;
