import { PropsWithChildren, ReactNode } from 'react'; export interface PanelTabGroupProps { title?: ReactNode; important?: boolean; className?: string; } export declare const PanelTabGroup: ({ title, important, className, children }: PropsWithChildren) => import("@emotion/react/jsx-runtime").JSX.Element;