///
import { WidgetContainerStyleOptions } from '../../../../types';
import { WidgetHeaderConfig } from './types.js';
export interface WidgetHeaderProps {
/** Style options for the widget header */
styleOptions?: WidgetContainerStyleOptions['header'];
/**
* Header configuration: every item that lands in the header — the widget's own (marked built-ins),
* the consumer's, and `onBeforeRender`.
*/
config?: WidgetHeaderConfig;
}
/**
* Widget header.
*
* Pure layout: {@link useResolvedWidgetHeaderItems} orders the widget's items into the header's slots
* and applies the consumer's {@link WidgetHeaderConfig}, and this draws the result as a single row
* plus the divider underneath.
*/
export declare const WidgetHeader: React.FC;