/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { BadgeAlign } from './BadgeProps'; import { PropType } from 'vue'; /** * Represents the [Kendo UI for Vue BadgeContainer component]({% slug api_indicators_badgeprops %}). * * @example * ```jsx * 99+ * ``` */ declare const BadgeContainer: import('vue').DefineComponent; align: { type: PropType; default: () => BadgeAlign; }; size: { type: PropType<"small" | "medium" | "large">; validator: (value: string) => boolean; }; fillMode: { type: PropType<"solid" | "outline">; validator: (value: string) => boolean; }; themeColor: { type: PropType<"primary" | "secondary" | "tertiary" | "info" | "success" | "warning" | "error" | "inverse" | "inherit">; default: string; validator: (value: string) => boolean; }; rounded: { type: PropType<"small" | "medium" | "large" | "none" | "full">; validator: (value: string) => boolean; }; position: { type: PropType; default: string; validator: (value: string) => boolean; }; cutoutBorder: PropType; content: PropType; }>, {}, {}, { badgeContainerClasses(): { 'k-badge-container': boolean; }; badgeClasses(): { [x: string]: any; 'k-badge': boolean; 'k-badge-sm': boolean; 'k-badge-md': boolean; 'k-badge-lg': boolean; 'k-badge-border-cutout': any; 'k-top-start': boolean; 'k-top-end': boolean; 'k-bottom-start': boolean; 'k-bottom-end': boolean; }; }, { focusElement(): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; align: { type: PropType; default: () => BadgeAlign; }; size: { type: PropType<"small" | "medium" | "large">; validator: (value: string) => boolean; }; fillMode: { type: PropType<"solid" | "outline">; validator: (value: string) => boolean; }; themeColor: { type: PropType<"primary" | "secondary" | "tertiary" | "info" | "success" | "warning" | "error" | "inverse" | "inherit">; default: string; validator: (value: string) => boolean; }; rounded: { type: PropType<"small" | "medium" | "large" | "none" | "full">; validator: (value: string) => boolean; }; position: { type: PropType; default: string; validator: (value: string) => boolean; }; cutoutBorder: PropType; content: PropType; }>> & Readonly<{}>, { themeColor: "primary" | "secondary" | "tertiary" | "info" | "success" | "warning" | "error" | "inverse" | "inherit"; position: string; align: BadgeAlign; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { BadgeContainer };