import { Item } from "./types";
export declare function placeItemsAfter(items: Item[], id: string, shouldInsertNullItem?: boolean): (Item | {
    id: null;
    ref: {
        current: null;
    };
})[];
