import type { Generic } from 'adopted-style-sheets';
import type { AccessKeyPropType } from './access-key';
import type { ShortKeyPropType } from './short-key';
export type BadgeTextPropType = AccessKeyPropType | ShortKeyPropType;
export type PropBadgeText = {
    badgeText: BadgeTextPropType;
};
export declare const validateBadgeText: (component: Generic.Element.Component, value?: BadgeTextPropType) => void;
