import React from 'react';
interface Props {
    noMenu?: boolean;
    size?: number;
    label?: string;
    altLabel?: string;
}
declare function AccountPopover({ label, altLabel, noMenu, size, children }: React.PropsWithChildren<Props>): JSX.Element;
declare namespace AccountPopover {
    var defaultProps: {
        size: number;
        label: string;
        altLabel: string;
    };
}
export default AccountPopover;
