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