type PushUpdateOptions = { array: T[]; item: T; maxLength: number; replace: boolean; }; export declare function pushUpdate({ array, item, maxLength, replace }: PushUpdateOptions): T | null | undefined; export {};