import React, { PropsWithChildren, ReactNode } from 'react'; export interface PanelTabsContextProps { activeTabId?: string; onChange?: (id: string) => void; } export declare const PanelTabContext: React.Context; export declare const usePanelTabContext: () => PanelTabsContextProps; export interface TabsProps { title?: string; important?: boolean; items: ReactNode; } export interface PanelTabsProps { divider?: boolean; className?: string; activeTabId?: string; onChange?: (id: string) => void; } export declare const PanelTabs: ({ divider, children, className, activeTabId, onChange, }: PropsWithChildren) => import("@emotion/react/jsx-runtime").JSX.Element;