@wordpress/components
Version:
UI components for WordPress.
12 lines • 407 B
TypeScript
/**
* Internal dependencies
*/
import type { PanelHeaderProps } from './types';
/**
* `PanelHeader` renders the header for the `Panel`.
* This is used by the `Panel` component under the hood,
* so it does not typically need to be used.
*/
declare function PanelHeader({ label, children }: PanelHeaderProps): import("react").JSX.Element;
export default PanelHeader;
//# sourceMappingURL=header.d.ts.map