import type { ValuesOf } from '../../Types/ValuesOf'; /** * `BadgePosition` - The `BadgePosition` object is used to describe the different positions of a badge. * * @public */ export declare const BadgePosition: { /** * `none` - No position is set. */ readonly None: "none"; /** * `bottom-left` - Places the badge below and to the left of the target component. */ readonly BottomLeft: "bottom-left"; /** * `bottom-right` - Places the badge below and to the right of the target component. */ readonly BottomRight: "bottom-right"; /** * `top-left` - Places the badge above and to the left of the target component. */ readonly TopLeft: "top-left"; /** * `top-right` - Places the badge above and to the right of the target component. */ readonly TopRight: "top-right"; }; /** * @public */ export type BadgePosition = ValuesOf; //# sourceMappingURL=BadgePosition.d.ts.map