import { StudioLayouts } from '.'; import type { StudioLayoutBasePropsConfig } from './StudioBaseSchema'; export interface StudioLayoutSidebarLeftConfig extends Omit { /** * Type of the layout component. */ type: `${StudioLayouts.sidebarLeft}`; /** * Indicates whether the sidebar is resizable. * @default true */ resizable?: boolean; }