import { ButtonProps } from '@mui/material';
import { ReactNode } from 'react';
export type AccountLevelBadgeType = 'certified' | 'validated' | 'enabledMFA';
type AccountLevelBadgeConfig = {
    label: string;
    description: string;
    tooltipText: string;
    icon: ReactNode;
    linkHref: string;
    buttonNode?: ReactNode;
};
export declare const accountLevelBadgeConfig: Record<AccountLevelBadgeType, AccountLevelBadgeConfig>;
export type AccountLevelBadgeProps = {
    badgeType: AccountLevelBadgeType;
    buttonProps?: ButtonProps;
};
export declare function AccountLevelBadge({ badgeType, buttonProps, }: AccountLevelBadgeProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=AccountLevelBadge.d.ts.map