import React from 'react'; import { StoryPanelType } from '../../enums/enum.story.panelType'; import './StoryPanelToggle.css'; /** * Props for the StoryPanelToggle component. */ interface StoryPanelToggleProps { /** The currently selected panel type */ value: StoryPanelType; /** Callback function to handle panel type changes */ onChange: (v: StoryPanelType) => void; } /** * StoryPanelToggle Component * * This component provides a toggle switch for selecting between different story panel types. * It uses a segmented control to allow users to switch between the side and main panels. * * @param {StoryPanelToggleProps} props - The props for the component. * @returns {JSX.Element} The rendered StoryPanelToggle component. */ export declare const StoryPanelToggle: React.FC; export {};