/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { FluentUITypes } from '@msrvida/fluentui-react-cdn-typings'; import { SideTabId } from '../interfaces'; export interface BaseProps { onSideTabClick: (sideTabId: SideTabId) => void; selectedSideTab: SideTabId; closed: boolean; themePalette: Partial; } export interface SidebuttonProps { iconName: string; title: string; sideTabId: SideTabId; badgeText?: string; themePalette?: Partial; role?: string; omitAriaSelected?: boolean; } export declare function Sidebutton(props: SidebuttonProps & BaseProps): JSX.Element;