import { default as React, ReactNode } from 'react'; export interface SegmentedControlPanelProps extends React.ComponentPropsWithoutRef<'div'> { /** * Specify the value of the panel */ value: string; /** * Specify the content of the panel */ children?: ReactNode; } export declare const SegmentedControlPanel: ({ value, children, className: _className, ...props }: SegmentedControlPanelProps) => import("react/jsx-runtime").JSX.Element;