import { WidgetSubHeaderProps } from './types'; /** * Flexible two-slot layout for displaying supplementary widget information such as totals, timestamps, or controls. Uses flexbox with space-between justification. * * @example * ```tsx * Total: 1,234} * slotRight={Updated: 2m ago} * /> * ``` */ export declare function WidgetSubHeader({ slotLeft, slotRight, sx, }: WidgetSubHeaderProps): import("react/jsx-runtime").JSX.Element;