import React from "react"; import type { ControlProps } from "./BaseControl"; import BaseControl from "./BaseControl"; import { PropertyPaneSectionSpaceDistributor } from "layoutSystems/anvil/sectionSpaceDistributor/propertyPane/PropertyPaneSectionSpaceDistributor"; export interface SectionSplitterControlProps extends ControlProps {} export class SectionSplitterControl extends BaseControl { static getControlType() { return "SECTION_SPLITTER"; } render() { return ( ); } }