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