import React from 'react'; export declare type OrientationToggleProps = { /** Which orientation is currently selected. */ orientation: 'vertical' | 'horizontal'; /** What action to take when orientation changes. */ onOrientationChange: (newOrientation: 'vertical' | 'horizontal') => void; /** Additional styles to apply to the widget container. */ containerStyles?: React.CSSProperties; }; /** * A simple UI widget for toggling plot orientation. */ export default function OrientationToggle({ orientation, onOrientationChange, containerStyles, }: OrientationToggleProps): JSX.Element; //# sourceMappingURL=OrientationToggle.d.ts.map