import { GameEntity } from '../Entity';
export declare class Prop extends GameEntity {
    readonly type: string;
    constructor(handle: number);
    setOnGround(): boolean | Promise<boolean>;
}
