import type React from "react";
export interface NavigationBarActionProps {
    items: NavigationBarActionData[];
}
export interface NavigationBarActionData {
    /**
     * A locally unique identifier for the action.
     */
    key: string;
    /**
     * A custom react element to use for the action.
     */
    content: React.ReactElement;
}
export declare function NavigationBarActions({ items }: NavigationBarActionProps): import("react/jsx-runtime").JSX.Element;
