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