import React from "react";
type JwtUser = {
    id: string;
    name?: string;
    surname?: string;
    email?: string;
};
type UserAction = {
    id: string;
    icon: React.ReactNode;
    label: string;
    onClick: () => void;
};
type AccountDropdownProps = {
    user: JwtUser;
    userActions?: Array<UserAction>;
};
export declare const AccountDropdown: ({ user, userActions, }: AccountDropdownProps) => import("react/jsx-runtime").JSX.Element;
export {};
