import { OptionListItem } from "../optionsList/types";
import { InfoListType } from "../infoList/InfoList";
type Props = {
    userName: string;
    email: string;
    info?: InfoListType;
    options?: OptionListItem<string>[];
    after?: React.ReactNode;
};
export type AccountButtonHandle = {
    closeMenu: () => void;
};
export declare const VuiAccountButton: import("react").ForwardRefExoticComponent<Props & import("react").RefAttributes<AccountButtonHandle>>;
export {};
