import { AnyAnimationName, PickupName } from "../../types";
type PlayerAnimationNames = {
    walking: AnyAnimationName;
    idle: AnyAnimationName;
};
export declare function enableMovement(canMove?: boolean, revertDelay?: number): Promise<void>;
export declare function takePickup(pickup: PickupName, toHolding?: boolean): void;
export declare function setPlayerAnimations(newAnimationNames: PlayerAnimationNames): void;
export {};
