import { InputState } from "../input"; import { ECSContext } from "../ecs"; export declare const _InputState: import("bitecs").ComponentType<{ moveX: "f32"; moveY: "f32"; moveZ: "f32"; yaw: "f32"; pitch: "f32"; interact: "f32"; primary: "f32"; secondary: "f32"; sprint: "ui8"; }>; /** * Parse the input state for an entity, following mount hierarchy if needed. * @param ctx ECS context * @param eid Entity ID * @returns InputState */ export declare function parseInputState(ctx: ECSContext, eid: number): InputState; //# sourceMappingURL=_InputState.d.ts.map