import { StudioLayouts } from '.'; import type { StudioLayoutPanelConfig } from './StudioPanelSchema'; export interface StudioLayoutPanelPagesLayersConfig extends StudioLayoutPanelConfig { /** * Type of the layout component. */ type: `${StudioLayouts.panelPagesLayers}`; /** * Properties for the panel pages. * @examples { header: { label: 'My Pages' } } */ panelPagesProps?: 'PanelPagesProps'; /** * Properties for the panel layers. * @examples { header: { label: 'My Layers' } } */ panelLayersProps?: 'PanelLayersProps'; }