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