import type { ObjectValues } from '../utils';
declare const POWER_UP_TYPE: {
    readonly Damage: "Damage";
    readonly Shield: "Shield";
    readonly Speed: "Speed";
};
export type PowerUpType = ObjectValues<typeof POWER_UP_TYPE>;
export {};
