/** * @license * * Copyright IBM Corp. 2025 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import React, { HTMLProps } from 'react'; interface BubbleHeaderProps extends HTMLProps { children: React.ReactNode; className?: string; } declare const BubbleHeader: { ({ children, className, ...rest }: BubbleHeaderProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { BubbleHeader };