import type { ValuesOf } from '../../Types/ValuesOf'; /** * `InkBarPosition` - Describes where a badge should be placed on. * * @public */ export declare const InkBarPosition: { /** * `top` - TODO */ readonly Top: "top"; /** * `bottom` - TODO */ readonly Bottom: "bottom"; /** * `left` - TODO */ readonly Left: "left"; /** * `right` - TODO */ readonly Right: "right"; }; /** * @public */ export type InkBarPosition = ValuesOf; //# sourceMappingURL=InkBarPosition.d.ts.map