import type { FC } from 'react'; import type { NavConfigHeaderAction } from './model'; export type HeaderActionsProps = { actions: NavConfigHeaderAction[]; }; export declare const HeaderActions: FC;