import type { ItemInputs, ControlInputs, ConditionInputs } from "../../types/state/inputs"; import type { Position } from "../../types/state/position"; /** * Creates a `CondInputs` object. * * @returns The created `CondInputs` object. */ export declare function create(): ControlInputs; /** * Clones a `CondInputs` object. * * @param inputs A `CondInputs` object. * @returns The cloned `CondInputs` object. */ export declare function clone(inputs: ConditionInputs): ControlInputs; /** * Returns the `ItemInputs` object at the given position within the given `CondInputs` object, or `null` if there is no item at the given position. * * @param inputs The `CondInputs` object. * @param position The position within the `CondInputs` object. * @returns The `ItemInputs` object at the given position within the `CondInputs` object, or `null` if there is no item at the given position. */ export declare function getItem(inputs: ConditionInputs, position: Position): ItemInputs | null; /** * Sets the `ItemInputs` object at the given position within the given `CondInputs` object. * * @param inputs The `CondInputs` object. * @param position The position within the `CondInputs` object. * @param item The `ItemInputs` object to set. */ export declare function setItem(inputs: ConditionInputs, position: Position, item: ItemInputs): void; //# sourceMappingURL=control.condition.d.ts.map