/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { Props as DataScopeProps } from './dataScope'; import { BaseProps } from './sideButton'; export interface Props extends BaseProps { calculating: boolean; children: React.ReactNode; hideSidebarControls: boolean; snapshotsHidden: boolean; disabled: boolean; dataScopeProps: DataScopeProps; pinned: boolean; } export declare function Sidebar(props: Props): JSX.Element;