import React from 'react'; import { AppLayoutProps } from '../../interfaces'; import { OnChangeParams } from '../../utils/use-drawers'; import { Focusable, FocusControlMultipleStates } from '../../utils/use-focus-control'; import { AppLayoutInternals } from '../interfaces'; import { FeatureNotificationsProps } from '../state/use-feature-notifications'; import { SplitPanelToggleProps } from './drawer-triggers'; export { SplitPanelToggleProps }; export interface ToolbarProps { ariaLabels?: AppLayoutProps.Labels; hasNavigation?: boolean; navigationOpen?: boolean; onNavigationToggle?: (open: boolean) => void; navigationFocusRef?: React.Ref; hasBreadcrumbsPortal?: boolean; hasSplitPanel?: boolean; splitPanelToggleProps?: SplitPanelToggleProps; splitPanelFocusRef?: React.Ref; onSplitPanelToggle?: () => void; activeDrawerId?: string | null; drawers?: ReadonlyArray; drawersFocusRef?: React.Ref; bottomDrawersFocusRef?: React.Ref; globalDrawersFocusControl?: FocusControlMultipleStates; onActiveDrawerChange?: (drawerId: string | null, params: OnChangeParams) => void; globalDrawers?: ReadonlyArray | undefined; activeGlobalDrawersIds?: ReadonlyArray; onActiveGlobalDrawersChange?: ((drawerId: string, params: OnChangeParams) => void) | undefined; bottomDrawers?: ReadonlyArray | undefined; activeGlobalBottomDrawerId?: string | null; onActiveGlobalBottomDrawerChange?: (value: string | null, params: OnChangeParams) => void; expandedDrawerId?: string | null; setExpandedDrawerId?: (value: string | null) => void; aiDrawer?: AppLayoutProps.Drawer; onActiveAiDrawerChange?: (value: string | null) => void; activeAiDrawerId?: string | null; aiDrawerFocusRef?: React.Ref; } export interface AppLayoutToolbarImplementationProps { appLayoutInternals: AppLayoutInternals; toolbarProps: ToolbarProps; featureNotificationsProps?: FeatureNotificationsProps; } export declare function AppLayoutToolbarImplementation({ appLayoutInternals, toolbarProps, featureNotificationsProps }: AppLayoutToolbarImplementationProps): JSX.Element; export declare const AppLayoutToolbar: (Loader?: typeof AppLayoutToolbarImplementation | undefined) => typeof AppLayoutToolbarImplementation;