import { default as React, ComponentPropsWithoutRef } from 'react'; export interface PanelHeaderHeadingProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the heading */ children?: React.ReactNode; } export declare const Heading: { ({ children, className: _className, id: _id, ...props }: PanelHeaderHeadingProps): import("react/jsx-runtime").JSX.Element; displayName: string; };