import { OptionListItem } from "../optionsList/types";
import { InfoListType } from "../infoList/InfoList";
type Props = {
    userName: string;
    email: string;
    info?: InfoListType;
    options?: OptionListItem<string>[];
};
export declare const VuiAccountButton: ({ userName, email, info, options, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
