import { StudioLayouts } from '.'; import type { StudioLayoutBasePropsConfig } from './StudioBaseSchema'; export interface StudioLayoutCanvasSidebarTopConfig extends Omit { /** * Type of the layout component. */ type: `${StudioLayouts.canvasSidebarTop}`; /** * The sidebar top. * @example { style: { alignItems: 'center' } } */ sidebarTop?: 'SidebarTopProps'; }